From 3803750fb189880eb4c4b6d41fdca1e6f162b116 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Fri, 8 Apr 2016 18:06:35 -0400 Subject: Changed getFile api call to always attach headers --- webapp/utils/utils.jsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'webapp/utils/utils.jsx') diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx index a70666e2d..ac373d638 100644 --- a/webapp/utils/utils.jsx +++ b/webapp/utils/utils.jsx @@ -1110,9 +1110,8 @@ export function fileSizeToString(bytes) { } // Converts a filename (like those attached to Post objects) to a url that can be used to retrieve attachments from the server. -export function getFileUrl(filename, isDownload) { - const downloadParam = isDownload ? '?download=1' : ''; - return getWindowLocationOrigin() + '/api/v1/files/get' + filename + downloadParam; +export function getFileUrl(filename) { + return getWindowLocationOrigin() + '/api/v1/files/get' + filename; } // Gets the name of a file (including extension) from a given url or file path. -- cgit v1.2.3-1-g7c22