diff options
author | ElzorFox <elzorfox@ya.ru> | 2024-04-18 12:03:09 +0500 |
---|---|---|
committer | ElzorFox <elzorfox@ya.ru> | 2024-04-18 12:03:09 +0500 |
commit | 2ac29594d76f2cf75b59aa1889568bf742a24916 (patch) | |
tree | e602ec534b31dba72e466d04c406603ca49b2ca9 /protocols/VKontakte/src | |
parent | ad5fadc258cf79991721ac2a6b8266412703bd78 (diff) |
VKontakte: fix formating video
Diffstat (limited to 'protocols/VKontakte/src')
-rw-r--r-- | protocols/VKontakte/src/misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/VKontakte/src/misc.cpp b/protocols/VKontakte/src/misc.cpp index 64845d352f..88c3fdde0e 100644 --- a/protocols/VKontakte/src/misc.cpp +++ b/protocols/VKontakte/src/misc.cpp @@ -1350,7 +1350,7 @@ CMStringW CVkProto::GetAttachmentDescr(const JSONNode &jnAttachments, BBCSupport if (jnVideo["image"]) {
CMStringW wszPreviewImage = GetVkPhotoForVideoItem(jnVideo["image"], hContact, iMessageId);
if (!wszPreviewImage.IsEmpty())
- res.AppendFormat(L"%s\n", wszPreviewImage.c_str());
+ res.Append(wszPreviewImage);
}
res.AppendFormat(L"%s: %s",
|