Sankaku Beta no image fix

Fixes the issue of images not displaying when opening posts on another tab.

// ==UserScript==
// @name         Sankaku Beta no image fix
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Fixes the issue of images not displaying when opening posts on another tab.
// @author       Pwalpac
// @match        https://beta.sankakucomplex.com/post/show/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    'esversion: 6';
    // The issue happens when you open a post on a new tab and you are using tag search.
    // To fix it, it simply redirects the page to the version without the tags (removing everything after the "?" from the url).
    const currentUrl = window.location.href;
    const questionMarkIndex = currentUrl.indexOf("?");

    if (questionMarkIndex !== -1){
        const urlWithoutTags = currentUrl.substring(0, questionMarkIndex);
        window.location.href = urlWithoutTags;
    }
})();