jetbrains.com: "Server does not answer" Topic is solved

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
back2themoon
Knows the dark side
Knows the dark side
Posts: 3093
Joined: 2012-08-19, 20:32

jetbrains.com: "Server does not answer"

Post by back2themoon » 2025-12-30, 14:18

Hello,

Visit this page: https://www.jetbrains.com/toolbox-app/d ... other.html

...and click on any of the Release notes links you see. The result will be this message:

Oh-oh, server does not answer
Could not receive data and display the page


I see:

Code: Select all

- Failed to load config / TypeError: Array.from(...).toSorted is not a function
- TypeError: aPool is null
- Failed to execute ‘postMessage’ on ‘DOMWindow’: The target origin provided (‘https://a26669750187.cdn.optimizely.com’) does not match the recipient window’s origin (‘https://www.jetbrains.com’)
Their website in general runs slow, but that's probably another story. Example:

https://www.jetbrains.com/phpstorm/

User avatar
Night Wing
Knows the dark side
Knows the dark side
Posts: 5739
Joined: 2011-10-03, 10:19
Location: Piney Woods of Southeast Texas, USA

Re: jetbrains.com: "Server does not answer"

Post by Night Wing » 2025-12-30, 14:43

You are correct. The Release Notes will not show up. Probably some bad coding by the website maintainers.
MX Linux 25.1 (Infinity) Xfce w/Pale Moon, Waterfox, Firefox
Linux Debian 13.3 (Trixie) Xfce w/Pale Moon, Waterfox, Firefox

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

Re: jetbrains.com: "Server does not answer"

Post by adoxa » 2025-12-31, 07:49

toSorted is not supported, but slice().sort takes care of that; Object.groupBy is also not supported, but it's not actually used, so just remove its test. Modify HTTP Response filter to apply those changes.

Code: Select all

[["youtrack.jetbrains.com",["/\\.js$/",["/toSorted/g","slice().sort",",Object.groupBy([],()=>\"test\")",""]]]]

User avatar
back2themoon
Knows the dark side
Knows the dark side
Posts: 3093
Joined: 2012-08-19, 20:32

Re: jetbrains.com: "Server does not answer"

Post by back2themoon » 2025-12-31, 11:58

Thank you Night Wing for confirming, and thank you adoxa for the magic fix. :thumbup: