From 1cb4038abff86287c8812cd6ada25cee828bc909 Mon Sep 17 00:00:00 2001 From: redphx <96280+redphx@users.noreply.github.com> Date: Sat, 13 Apr 2024 05:31:18 +0700 Subject: [PATCH] Fix typo when calling Response.clone() (#361) --- better-xcloud.user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/better-xcloud.user.js b/better-xcloud.user.js index f189e9f..a94c1b1 100644 --- a/better-xcloud.user.js +++ b/better-xcloud.user.js @@ -10469,7 +10469,7 @@ function interceptHttpRequests() { if (PREF_UI_LOADING_SCREEN_WAIT_TIME && url.includes('xboxlive.com') && url.includes('/waittime/')) { const response = await NATIVE_FETCH(...arg); - const json = await response.clone.json(); + const json = await response.clone().json(); if (json.estimatedAllocationTimeInSeconds > 0) { // Setup wait time overlay LoadingScreen.setupWaitTime(json.estimatedTotalWaitTimeInSeconds);