Hi.
I had Ä ä ö Ö showing like ä etc...
I changed line 2452 in GuiOnlineVideos.cs, ie.
to
meaning forcing utf-8.
Now characters are presented Okay.
Br,
I had Ä ä ö Ö showing like ä etc...
I changed line 2452 in GuiOnlineVideos.cs, ie.
Code:
string subs = string.IsNullOrEmpty(playItem.Video.SubtitleText) ? Sites.SiteUtilBase.GetWebData(playItem.Video.SubtitleUrl) : playItem.Video.SubtitleText;
Code:
string subs = string.IsNullOrEmpty(playItem.Video.SubtitleText) ? Sites.SiteUtilBase.GetWebData(playItem.Video.SubtitleUrl, null, null, null, true, false, null, null) : playItem.Video.SubtitleText;
meaning forcing utf-8.
Now characters are presented Okay.
Br,