Anapher / Hurricane

The music player with style
GNU General Public License v3.0
130 stars 56 forks source link

Tags #27

Open VicLo2020 opened 3 years ago

VicLo2020 commented 3 years ago

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()); }