diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Telegram/src/avatars.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Telegram/src/avatars.cpp b/protocols/Telegram/src/avatars.cpp index b845d536de..7e1d117ed7 100644 --- a/protocols/Telegram/src/avatars.cpp +++ b/protocols/Telegram/src/avatars.cpp @@ -90,7 +90,7 @@ void CTelegramProto::ProcessFile(TD::updateFile *pObj) CMStringW wszFullName = it->m_destPath + L"\\" + it->m_fileName;
if (it->m_type == it->AVATAR) {
- if (it->m_destPath.Right(5).MakeLower() == L".webp") {
+ if (it->m_fileName.Right(5).MakeLower() == L".webp") {
if (auto *pImage = FreeImage_LoadU(FIF_WEBP, wszExistingFile)) {
wszFullName.Truncate(wszFullName.GetLength() - 5);
wszFullName += L".png";
|