Replace & with & char

This commit is contained in:
CappielloAntonio 2021-08-13 15:33:34 +02:00
parent 2d29a625f2
commit 055ac44cf6

View file

@ -67,6 +67,7 @@ public class MusicUtil {
return getReadableString(string)
.replaceAll(""", "\"")
.replaceAll("'", "'")
.replaceAll("&", "'")
.replaceAll("<a[\\s]+([^>]+)>((?:.(?!</a>))*.)</a>", "");
}