diff --git a/src/App.js b/src/App.js index 86305e8..a14639d 100644 --- a/src/App.js +++ b/src/App.js @@ -153,7 +153,7 @@ class App extends IPCContainer { }; grabReleases = () => { - if (this.props.Platform !== 'unknown') { + if (this.props.AppPlatform !== 'unknown') { this.sendRequest(Constants.IPC_Grab_Releases); this.sendRequest(Constants.IPC_Grab_UI_Releases); } @@ -522,7 +522,7 @@ class App extends IPCContainer { }; updateCheckScheduledJob = () => { - if (this.props.Platform !== 'unknown') { + if (this.props.AppPlatform !== 'unknown') { this.grabReleases(); } };