EE:DB 500 Error Redirect

Works around a bug in HabboUK's EE:DB code to redirect to the log in page if signed out.

Version vom 06.11.2024. Aktuellste Version

// ==UserScript==
// @name        EE:DB 500 Error Redirect
// @description Works around a bug in HabboUK's EE:DB code to redirect to the log in page if signed out.
// @namespace   NDYC
// @homepageURL https://github.com/noahc500
// @match       https://habbouk.com/eedb
// @version     1.1
// @author      NDYC
// @license    GPL-3.0
// ==/UserScript==
if (document.getElementsByTagName('div')[2].innerText == "Server Error") {
  document.getElementsByTagName('div')[2].innerHTML = "Restricted Page<br/>Redirecting to Login"
  window.location.replace("https://habbouk.com/login")
}