Fix + in artist/album name

This commit is contained in:
Laura Hausmann 2023-03-16 00:25:02 +01:00
parent 13282621ad
commit 84f81bfa66
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -58,7 +58,7 @@ namespace webmusic.Pages {
}
}
public static string Encode(string str) => str.Replace("\"", "%22").Replace("'", "%27").Replace("?", "%3F").Replace("&", "%26").Replace(" ", "%20");
public static string Encode(string str) => str.Replace("\"", "%22").Replace("'", "%27").Replace("?", "%3F").Replace("&", "%26").Replace(" ", "%20".Replace("+", "%2B"));
private class NaturalSortComparer : IComparer<string>, IDisposable {
private readonly bool _isAscending;