diff options
author | George Hazan <george.hazan@gmail.com> | 2023-07-29 18:56:14 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-07-29 18:56:14 +0300 |
commit | 26686176cf3c08411c91dbb25f3973ab2a874722 (patch) | |
tree | 75b9dce899dd389f2798f538684ecf8d30cd61ff /protocols/ICQ-WIM/src/utils.cpp | |
parent | 5984ec588ef9ff5182d6d76d1f0ef723d799c5c2 (diff) |
ICQ: remote file URL aesthetics
Diffstat (limited to 'protocols/ICQ-WIM/src/utils.cpp')
-rw-r--r-- | protocols/ICQ-WIM/src/utils.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/protocols/ICQ-WIM/src/utils.cpp b/protocols/ICQ-WIM/src/utils.cpp index fbe99c6ad6..ffaccc4747 100644 --- a/protocols/ICQ-WIM/src/utils.cpp +++ b/protocols/ICQ-WIM/src/utils.cpp @@ -247,11 +247,7 @@ void CIcqProto::setId(MCONTACT hContact, const char *szSetting, __int64 iValue) CMStringW fileText2url(const CMStringW &wszText)
{
- CMStringW wszUrl(wszText.Mid(26));
- int idx = wszUrl.Find(' ');
- if (idx != -1)
- wszUrl.Truncate(idx);
- return wszUrl;
+ return wszText.Mid(26);
}
/////////////////////////////////////////////////////////////////////////////////////////
|