Change character encoding when reading main menu cache file
authorPiotr Czaja <p.czaja@samsung.com>
Fri, 8 Dec 2023 12:48:38 +0000 (13:48 +0100)
committerPiotr Czaja/Tizen Services & IoT (PLT) /SRPOL/Engineer/Samsung Electronics <p.czaja@samsung.com>
Fri, 8 Dec 2023 13:29:57 +0000 (14:29 +0100)
Change-Id: I702a9974cb58d1cecd48ef7f8ad272fadefff535

SettingCore/MainMenuInfo.cs

index 972fff0e84a33af99e049216170f44f0c5109c75..ed68eb19485fb10c0540ddaf6edd0cafe3ccd204 100644 (file)
@@ -31,7 +31,7 @@ namespace SettingCore
         {
             try
             {
-                string text = System.IO.File.ReadAllText(CachePath, Encoding.ASCII);
+                string text = System.IO.File.ReadAllText(CachePath, Encoding.UTF8);
 
                 List<MainMenuInfo> fromCache = new List<MainMenuInfo>();