Archived
1
0

Cursor now hides on playback

Special chars in toasts fixed
This commit is contained in:
Michael Gordeev
2019-04-25 21:17:28 +03:00
parent af0747d6e5
commit 60bb51e272
6 changed files with 33 additions and 6 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ namespace FoxTube.Background
{
public static string ConvertEscapeSymbols(this string str)
{
return str.Replace("&quot;", "\"").Replace("&apos;", "'").Replace("&lt;", "<").Replace("&gt;", ">").Replace("&amp;", "&");
return str.Replace("&quot;", "\"").Replace("&apos;", "'").Replace("&lt;", "<").Replace("&gt;", ">").Replace("&amp;", "&").Replace("&#34;", "\"").Replace("&#39;", "'").Replace("&#60;", "<").Replace("&#62;", ">").Replace("&#38;", "&");
}
}
}