1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-11-24 08:42:24 +02:00

encoding of question mark character for media path

This commit is contained in:
andreas 2022-07-20 22:04:54 +02:00
parent 6343fac560
commit 68f677f63e

View File

@ -42,6 +42,7 @@ export class MediaIcon {
// .replace(new RegExp('%', 'g'), '%25') // order important
.replace(new RegExp('#', 'g'), '%23')
.replace(new RegExp('\\$', 'g'), '%24')
.replace(new RegExp('\\?', 'g'), '%3F')
);
}