diff --git a/plugins/Staging/src/index.js b/plugins/Staging/src/index.js index 3cc7b6b..2d1981a 100644 --- a/plugins/Staging/src/index.js +++ b/plugins/Staging/src/index.js @@ -1,9 +1,8 @@ -if (!location.href.includes("desktop.tidal.com")) return; -location.href = location.href.replace( - "desktop.tidal.com", - "desktop.stage.tidal.com" -); - -export async function onUnload() { - return "not an empty function now!"; +if (location.href.includes("desktop.tidal.com")) { + location.href = location.href.replace( + "desktop.tidal.com", + "desktop.stage.tidal.com" + ); } + +export async function onUnload() {}