Remove disable upgrade check bool

This commit is contained in:
Gabe Kangas 2021-02-03 19:14:25 -08:00
parent 3790aba34f
commit ed80ac13b5
2 changed files with 1 additions and 2 deletions

View file

@ -81,7 +81,7 @@ export default function MainLayout(props) {
};
useEffect(() => {
if (!performedUpgradeCheck && !context.disableUpgradeChecks) {
if (!performedUpgradeCheck) {
checkForUpgrade();
performedUpgradeCheck = true
}

View file

@ -52,7 +52,6 @@ const initialServerStatusState = {
sessionMaxViewerCount: 0,
sessionPeakViewerCount: 0,
overallPeakViewerCount: 0,
disableUpgradeChecks: true,
versionNumber: '0.0.0',
streamTitle: '',
};