From ae24005f0819c727706f1c1f5ae4c3b543c86f1d Mon Sep 17 00:00:00 2001 From: redphx <96280+redphx@users.noreply.github.com> Date: Thu, 11 Apr 2024 17:11:59 +0700 Subject: [PATCH] Fix exception in fetch() --- 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 694c1c9..97e672a 100644 --- a/better-xcloud.user.js +++ b/better-xcloud.user.js @@ -10447,7 +10447,7 @@ function interceptHttpRequests() { return response; } - if (PREF_STREAM_TOUCH_CONTROLLER === 'all' && (url.includes('/titles') || url.includes('/mru'))) { + if (PREF_STREAM_TOUCH_CONTROLLER === 'all' && (url.includes('/v2/titles') || url.includes('/mru'))) { const response = await NATIVE_FETCH(...arg); const json = await response.clone().json() for (let game of json.results) {