From 992adba9c6c2abf7123a17ea6549467f88f67219 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 12 Jun 2020 23:39:43 -0500 Subject: [PATCH] Support 1.2 --- src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.js b/src/App.js index 4847093..a54cf72 100644 --- a/src/App.js +++ b/src/App.js @@ -117,8 +117,8 @@ class App extends IPCContainer { const scPrimeSupported = this.props.LocationsLookup[selectedVersion] && this.props.LocationsLookup[selectedVersion].siaprime_support; - const siaSupported = this.props.LocationsLookup[selectedVersion] && - this.props.LocationsLookup[selectedVersion].sia_support; + const siaSupported = Constants.RELEASES_URL.endsWith('releases_1.1.json') || (this.props.LocationsLookup[selectedVersion] && + this.props.LocationsLookup[selectedVersion].sia_support); const showConfig = !missingDependencies && this.props.DisplayConfiguration &&