From 16122216bbf786f49a3954ddb6305cf585b6cef6 Mon Sep 17 00:00:00 2001 From: alexliebowitz Date: Fri, 24 Mar 2017 03:21:12 -0400 Subject: [PATCH] Fix filenames for downloaded upgrades Windows and Linux were incorrect --- ui/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/js/app.js b/ui/js/app.js index 79ff80873..093c051cb 100644 --- a/ui/js/app.js +++ b/ui/js/app.js @@ -47,9 +47,9 @@ var App = React.createClass({ if (os.platform() == 'darwin') { return `LBRY-${this._version}.dmg`; } else if (os.platform() == 'linux') { - return `LBRY-${this._version}.deb`; + return `LBRY_${this._version}_amd64.deb`; } else { - return `LBRY-${this._version}_amd64.deb`; + return `LBRY.Setup.${this._version}.exe`; } }, getInitialState: function() { -- 2.43.4