From 19dc99b425ab7dedfec568023e376318d52b9fba Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 17 Oct 2017 00:04:19 -0700 Subject: [PATCH] Update for GFE 3.10 --- static/js/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/utils.js b/static/js/utils.js index 79a7fef..006cfbd 100644 --- a/static/js/utils.js +++ b/static/js/utils.js @@ -241,7 +241,7 @@ NvHTTP.prototype = { // GFE 2.8 started keeping currentgame set to the last game played. As a result, it no longer // has the semantics that its name would indicate. To contain the effects of this change as much // as possible, we'll force the current game to zero if the server isn't in a streaming session. - if ($root.find("state").text().trim().endsWith("_SERVER_AVAILABLE")) { + if (!$root.find("state").text().trim().endsWith("_SERVER_BUSY")) { this.currentGame = 0; }