Fix filenames for downloaded upgrades

Windows and Linux were incorrect
This commit is contained in:
alexliebowitz 2017-03-24 03:21:12 -04:00 committed by GitHub
parent c086842972
commit 16122216bb

View file

@ -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() {