GodLikeProductions redirect forum display to newest threads first

Redirects forum main page index into sorting threads by date of creation, newest created threads at the top.

// ==UserScript==
// @name        GodLikeProductions redirect forum display to newest threads first
// @match       https://www.godlikeproductions.com
// @description Redirects forum main page index into sorting threads by date of creation, newest created threads at the top.
// @version 0.0.1.20230227044718
// @namespace https://greasyfork.org/users/1033655
// ==/UserScript==
var oldUrlPath  = window.location.pathname;
if ( ! /\.compact$/.test (oldUrlPath) ) {

    var newURL  = window.location.protocol + "//"
                + window.location.host
                + oldUrlPath + "forum1/pg1?sort=posted&order=desc"
                + window.location.search
                + window.location.hash
                ;
    window.location.replace (newURL);
}