From 59c4e37f749b7dd009d81c6eb88568bc28eccff7 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 5 Jun 2019 17:35:03 -0500 Subject: [PATCH] Use AppPlatform for releases --- src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); } };