VR.fi shows error page

For support with specific websites

Moderator: trava90

Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.

Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
User avatar
duskull
Moongazer
Moongazer
Posts: 14
Joined: 2021-04-08, 11:48

VR.fi shows error page

Post by duskull » 2026-06-25, 21:26

The page loads fine initially, but then shows the "Oops, something went wrong!" page. Palemoon 34.3.1 on Linux. I cannot reproduce the error with other browsers.

Code: Select all

DOMException [SyntaxError: "':not(:defined)' is not a valid selector"
code: 12
nsresult: 0x8053000c
location: https://www.vr.fi/_next/static/chunks/3onefwymwhen5.js:2]  
3nh6nexff7_ps.js:51:3116
Failed to clear old visitor cache database DOMException [SecurityError: "The operation is insecure."
code: 18
nsresult: 0x80530012
location: https://service.giosg.com/bar/visitor.442e7e3f5ca40b919a0f.js:1]

User avatar
adoxa
Astronaut
Astronaut
Posts: 668
Joined: 2019-03-16, 13:26
Location: Qld, Aus.

Re: VR.fi shows error page

Post by adoxa » 2026-06-26, 01:20

Here's a Modify HTTP Response filter to remove the selector and replace "Europe/Helsinki" with "+02:00".

Code: Select all

[["www.vr.fi",["/chunks.*\\.js$/",["document.querySelectorAll(\":not(:defined)\")","[]","/Europe\\/Helsinki/g","+02:00"]]]]
You may then need to hit End to get to the bottom of the page to manage cookies.

User avatar
duskull
Moongazer
Moongazer
Posts: 14
Joined: 2021-04-08, 11:48

Re: VR.fi shows error page

Post by duskull » 2026-06-28, 20:28

Alright, thank you!