From 2db93e0b278176b4dd68e8565ddab139d86c6e7b Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Fri, 22 Apr 2016 15:25:57 +0000 Subject: Dropbox: links will never be short git-svn-id: http://svn.miranda-ng.org/main/trunk@16746 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Dropbox/src/dropbox_transfers.cpp | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'plugins/Dropbox/src/dropbox_transfers.cpp') diff --git a/plugins/Dropbox/src/dropbox_transfers.cpp b/plugins/Dropbox/src/dropbox_transfers.cpp index 4b54e4cd55..ebebed6fc3 100644 --- a/plugins/Dropbox/src/dropbox_transfers.cpp +++ b/plugins/Dropbox/src/dropbox_transfers.cpp @@ -76,14 +76,9 @@ 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; - HttpRequest *request; - if (useShortUrl) - request = new ShareOldRequest(token, path); - else - request = new ShareRequest(token, path); - NLHR_PTR response(request->Send(hNetlibConnection)); - delete request; + //bool useShortUrl = db_get_b(NULL, MODULE, "UseSortLinks", 1) > 0; + ShareRequest request(token, path); + NLHR_PTR response(request.Send(hNetlibConnection)); HandleJsonResponseError(response); -- cgit v1.2.3