Anapher / Hurricane

The music player with style

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tags

VicLo2020 opened this issue · comments

commented

Hello
Tags are displayed incorrectly in Cyrillic.
You must use tag recoding.

Example:
public string toUtf8(string unknown)
{
if (string.IsNullOrEmpty(unknown)) return string.Empty;
return new string(unknown.ToCharArray().
Select(x => ((x + 848) >= 'А' && (x + 848) <= 'ё') ? (char)(x + 848) : x).
ToArray());
}