fix www. redirection, again...

This commit is contained in:
Holly Stubbs 2025-03-01 22:54:18 +00:00
parent e21e59fea3
commit 914e1a8fd9

View file

@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name MultiProbe // @name MultiProbe
// @namespace https://*.angusnicneven.com/* // @namespace https://*.angusnicneven.com/*
// @version 20250226.0 // @version 20250301.0
// @description Probe with friends! // @description Probe with friends!
// @author tgpholly // @author tgpholly
// @match https://*.angusnicneven.com/* // @match https://*.angusnicneven.com/*
@ -13,7 +13,7 @@
let continueRunningScript = true; let continueRunningScript = true;
if (!window.TE_ACTIVE) { if (!window.TE_ACTIVE) {
if (window.location.href.includes("://www.")) { if (window.location.href.includes("://www.")) {
window.location.href = window.location.href.replace("://www.", ""); window.location.href = window.location.href.replace("://www.", "://");
continueRunningScript = false; continueRunningScript = false;
} }