From e1cae3b15b1a85fcb2ef30fee0076ae3a8d23856 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Fri, 6 May 2016 14:32:08 -0400 Subject: PLT-2600/PLT-2770 Changed getPublicLink api call to return a proper JSON string (#2914) * Removed unused channelId and userId parameters from web client getPublicLink method * Changed getPublicLink api call to return a proper JSON string --- webapp/utils/async_client.jsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'webapp/utils/async_client.jsx') diff --git a/webapp/utils/async_client.jsx b/webapp/utils/async_client.jsx index ac651a7bb..1dcead326 100644 --- a/webapp/utils/async_client.jsx +++ b/webapp/utils/async_client.jsx @@ -1344,8 +1344,8 @@ export function regenCommandToken(id) { ); } -export function getPublicLink(channelId, userId, filename, success, error) { - const callName = 'getPublicLink' + channelId + userId + filename; +export function getPublicLink(filename, success, error) { + const callName = 'getPublicLink' + filename; if (isCallInProgress(callName)) { return; @@ -1354,8 +1354,6 @@ export function getPublicLink(channelId, userId, filename, success, error) { callTracker[callName] = utils.getTimestamp(); Client.getPublicLink( - channelId, - userId, filename, (link) => { callTracker[callName] = 0; -- cgit v1.2.3-1-g7c22