getmusicbee.com
Support => Bug Reports => Topic started by: vzell on June 01, 2025, 07:50:23 AM
Title:
Parsing error when using custom tag in the custom web link section
Post by:
vzell
on
June 01, 2025, 07:50:23 AM
I have the following custom tag configured in "AppData\CustomTagConfig.xml":
<Tag id="BruceBaseEventURL" id3v23="TXXX/BRUCEBASE EVENT URL" id3v24="TXXX/BRUCEBASE EVENT URL" wma="BruceBaseEventURL" vorbisComments="BruceBaseEventURL" mpeg="BruceBaseEventURL" ape2="BruceBaseEventURL" />
Custom Tag: BruceBase Event URL
Save to musicfile as: BruceBaseEventURL
The values have the following structure: "1977#070277"
When using them in the "custom web link section" as
http://brucebase.wikidot.com/<BruceBase Event URL>
I get the following in the browser when clicking them (the "#" gets translated to a "-", resulting in a page not found error)
http://brucebase.wikidot.com/1977-070277
Title:
Re: Parsing error when using custom tag in the custom web link section
Post by:
tjinc
on
June 01, 2025, 09:08:32 AM
With custom web links there is some encoding of special characters which needs to be addressed.
Try this as your web-link:
Code
http://brucebase.wikidot.com/$RxReplace(<BruceBase Event URL>,"%23","#")
Title:
Re: Parsing error when using custom tag in the custom web link section
Post by:
vzell
on
June 02, 2025, 03:27:06 PM
works like a charm ... thx