summaryrefslogtreecommitdiff
path: root/plugins/AVS/src/services.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-08-01 12:43:17 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-08-01 12:43:17 +0300
commitd057fcad5175ef542723981f59c6184a67942864 (patch)
tree3d258bf16b7c1622928a261942ce2e25a1430a69 /plugins/AVS/src/services.cpp
parent9db4ad0747d45ffe0e8ed82c864c1b22537ff842 (diff)
fixes #2022 (shitty internal AVS flags finally removed from global include file)
Diffstat (limited to 'plugins/AVS/src/services.cpp')
-rw-r--r--plugins/AVS/src/services.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/AVS/src/services.cpp b/plugins/AVS/src/services.cpp
index 6498536305..8da0886b08 100644
--- a/plugins/AVS/src/services.cpp
+++ b/plugins/AVS/src/services.cpp
@@ -35,7 +35,7 @@ INT_PTR GetAvatarBitmap(WPARAM hContact, LPARAM)
// Get the node
CacheNode *node = FindAvatarInCache(hContact, true);
- if (node == nullptr || !node->loaded)
+ if (node == nullptr || !node->bLoaded)
return (INT_PTR)GetProtoDefaultAvatar(hContact);
return (INT_PTR)node;
}