diff options
-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 4f5b359f7e..61eaa2334e 100644 --- a/protocols/VKontakte/src/misc.cpp +++ b/protocols/VKontakte/src/misc.cpp @@ -1271,7 +1271,7 @@ CMStringW CVkProto::GetAttachmentDescr(const JSONNode &jnAttachments, BBCSupport {
debugLogA("CVkProto::GetAttachmentDescr");
CMStringW res;
- if (!jnAttachments) {
+ if (!jnAttachments || jnAttachments.as_array().empty()) {
debugLogA("CVkProto::GetAttachmentDescr pAttachments == nullptr");
return res;
}
|