Fix filenames for downloaded upgrades #21
1 changed files with 2 additions and 2 deletions
|
@ -47,9 +47,9 @@ var App = React.createClass({
|
||||||
if (os.platform() == 'darwin') {
|
if (os.platform() == 'darwin') {
|
||||||
return `LBRY-${this._version}.dmg`;
|
return `LBRY-${this._version}.dmg`;
|
||||||
} else if (os.platform() == 'linux') {
|
} else if (os.platform() == 'linux') {
|
||||||
return `LBRY-${this._version}.deb`;
|
return `LBRY_${this._version}_amd64.deb`;
|
||||||
} else {
|
} else {
|
||||||
return `LBRY-${this._version}_amd64.deb`;
|
return `LBRY.Setup.${this._version}.exe`;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getInitialState: function() {
|
getInitialState: function() {
|
||||||
|
|
Loading…
Reference in a new issue