diff options
author | George Hazan <ghazan@miranda.im> | 2020-03-22 15:23:41 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-03-22 15:23:41 +0300 |
commit | bd9554ed8e8ba1e4be8d0ba5a0600cacbf95a950 (patch) | |
tree | ae602e7bc468c6532161c30739d267860ea4c3f6 /protocols/CloudFile | |
parent | 9de48904e749acbe412856579ea4463365f2fd78 (diff) |
SendScreenShot:
- fixes #2272 (main dialog doesn't restore cloud service correctly);
- CloudService doesn't apply default settings correctly
Diffstat (limited to 'protocols/CloudFile')
-rw-r--r-- | protocols/CloudFile/src/services.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/CloudFile/src/services.cpp b/protocols/CloudFile/src/services.cpp index e0a01fbfba..f568f2f68c 100644 --- a/protocols/CloudFile/src/services.cpp +++ b/protocols/CloudFile/src/services.cpp @@ -67,7 +67,7 @@ INT_PTR Upload(WPARAM wParam, LPARAM lParam) if (accountName == nullptr) return 2; - CCloudService *service = FindService(uploadData->accountName); + CCloudService *service = FindService(accountName); if (service == nullptr) return 3; |