From 0e32925468c283e54f2e1fc79a7881c6fa70775d Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 28 Dec 2011 14:31:54 -0500 Subject: [PATCH] Fix the download action to work through MFE --- web_frontend/actor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_frontend/actor.js b/web_frontend/actor.js index 1e34632..05ef26c 100644 --- a/web_frontend/actor.js +++ b/web_frontend/actor.js @@ -223,7 +223,7 @@ armadillo.Actor.prototype.performTVRename_ = function() { * @private */ armadillo.Actor.prototype.performDownload_ = function() { - window.location = '/download?path=' + this.file_.getFullPath(); + window.location = 'download?path=' + this.file_.getFullPath(); }; /** -- 2.22.5