diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-06 00:02:09 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-06 00:02:09 +0300 |
commit | f748401840ee648552825c99170c7d53d1b2ff43 (patch) | |
tree | 52818bf8bf5f1cefb36ebef2414ce74d5bf8c2b1 /plugins | |
parent | de898be6a2857dababe3eaa2bfb394a9ea92ecbe (diff) |
PF2_NONE : flag for protocols that have no statuses at all
fixes #1247
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/CloudFile/src/cloud_file.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/CloudFile/src/cloud_file.cpp b/plugins/CloudFile/src/cloud_file.cpp index 331d4d426c..6d92528f8a 100644 --- a/plugins/CloudFile/src/cloud_file.cpp +++ b/plugins/CloudFile/src/cloud_file.cpp @@ -39,6 +39,9 @@ DWORD_PTR CCloudService::GetCaps(int type, MCONTACT) switch (type) { case PFLAGNUM_1: return PF1_FILESEND; + case PFLAGNUM_2: + case PFLAGNUM_5: + return PF2_NONE; default: return 0; } |