diff options
author | George Hazan <george.hazan@gmail.com> | 2025-04-11 13:40:09 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-04-11 13:40:09 +0300 |
commit | c0ff932b9b6ba685160204fee0af84930f7aa922 (patch) | |
tree | 6b922da9dd5705c168d40f2eb691e453ddbf0713 /protocols/CloudFile/src/transfers.cpp | |
parent | 99584f314758d7ee3ef5faead704546ad0fdc10a (diff) |
fixes #4975 (CloudFile: нужно убирать учётку из подменю в меню контакта при её отключении) + some code cleaning
Diffstat (limited to 'protocols/CloudFile/src/transfers.cpp')
-rw-r--r-- | protocols/CloudFile/src/transfers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/CloudFile/src/transfers.cpp b/protocols/CloudFile/src/transfers.cpp index 5236e0c9f0..6b40e9cc62 100644 --- a/protocols/CloudFile/src/transfers.cpp +++ b/protocols/CloudFile/src/transfers.cpp @@ -5,7 +5,7 @@ LIST<FileTransferParam> Transfers(1, HandleKeySortT); INT_PTR SendFileInterceptor(WPARAM, LPARAM lParam) { CCSDATA *pccsd = (CCSDATA*)lParam; - for (auto &service : Services) { + for (auto &service : g_arServices) { auto it = service->InterceptedContacts.find(pccsd->hContact); if (it == service->InterceptedContacts.end()) continue; |