summaryrefslogtreecommitdiff
path: root/plugins/Dropbox/src/dropbox_transfers.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-03-03 15:43:38 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-03-03 15:43:38 +0000
commite5287627d957b092d11ba8031e4d30dc7f79cbd5 (patch)
tree97aa1ecb756c4ec15c1999ee92efc2de551332d0 /plugins/Dropbox/src/dropbox_transfers.cpp
parent999fdaa2662a1fe8937ec110232a78e87d79bfe7 (diff)
Dropbox: fallback to v1 api to support shorten urls
git-svn-id: http://svn.miranda-ng.org/main/trunk@16406 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/dropbox_transfers.cpp')
-rw-r--r--plugins/Dropbox/src/dropbox_transfers.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/plugins/Dropbox/src/dropbox_transfers.cpp b/plugins/Dropbox/src/dropbox_transfers.cpp
index 801f2e344e..15fd919598 100644
--- a/plugins/Dropbox/src/dropbox_transfers.cpp
+++ b/plugins/Dropbox/src/dropbox_transfers.cpp
@@ -76,9 +76,14 @@ void CDropbox::CreateFolder(const char *path)
void CDropbox::CreateDownloadUrl(const char *path, char *url)
{
ptrA token(db_get_sa(NULL, MODULE, "TokenSecret"));
- //bool useShortUrl = db_get_b(NULL, MODULE, "UseSortLinks", 1) > 0;
- ShareRequest request(token, path);
- NLHR_PTR response(request.Send(hNetlibConnection));
+ bool useShortUrl = db_get_b(NULL, MODULE, "UseSortLinks", 1) > 0;
+ HttpRequest *request;
+ if (useShortUrl)
+ request = new ShareOldRequest(token, path);
+ else
+ request = new ShareRequest(token, path);
+ NLHR_PTR response(request->Send(hNetlibConnection));
+ delete request;
HandleJsonResponseError(response);