This commit is contained in:
Boof 2023-08-23 14:27:33 +02:00 committed by GitHub
parent a313bfb8eb
commit 9c006ce778
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,4 +2,8 @@ const currentUrl = window.location.href
var url = new URL(currentUrl);
var c = url.searchParams.get("url");
window.location.href = (c)
// Check that there is something there otherwhise it will get stuck in a loop
if(c) {
window.location.href = (c)
}