The issue is that, in a Web Sources script, having [] characters in IndexUrl results in:
Error connecting to server: provided uri is invalid:
In details:
I'm trying to modify the Metal-Archives web source script in order to display all versions (CD, cassette, vinyl) of an album, not just the first match.
That's why I tried to append to IndexUrl in its line 28 the following:
releaseFormat[]=CD&releaseFormat[]=Cassette
i.e.:
to become
[IndexUrl]=https://www.metal-archives.com/search/ajax-advanced/searching/albums/?releaseFormat[]=CD&releaseFormat[]=Cassette
but unfortunately I'm getting e.g. this:

And, If I omit the [] chars, i.e.
[IndexUrl]=https://www.metal-archives.com/search/ajax-advanced/searching/albums/?releaseFormat=CD&releaseFormat=Cassette
then I don't get the above error, but that URL is wrong and naturally returns no results:

I also tried escaping these characters with backticks `:
[IndexUrl]=https://www.metal-archives.com/search/ajax-advanced/searching/albums/?releaseFormat'[]'=CD&releaseFormat'[]'=Cassette
but the backticks are unfortunately included in the produced URL instead:

Using 3.24 (or 3.24a) x64 on win11.
Thank you
Me&tal Archives#Search by Band + Album (non-working).src (5.3 KB)
Me&tal Archives#Search by Band + Album (original).src (5.3 KB)