3 points
*
**For some reason Lemmy is adding a ‘25’ between the % and s. Those numbers shouldn’t be there, just fyi.
The URL as shown is actually valid. No worries there.
The value 25
happens to be hexidecimal for a percent sign. The percent symbol is reserved in URLs for encoding special characters (e.g. %20
is a space), so a bare percent sign must be represented by %25
. Lemmy must be parsing your URL and normalizing it for the rest of us.