diff --git a/PowerEditor/src/WinControls/PluginsAdmin/pluginsAdmin.cpp b/PowerEditor/src/WinControls/PluginsAdmin/pluginsAdmin.cpp index 7542af95..a9b033a2 100644 --- a/PowerEditor/src/WinControls/PluginsAdmin/pluginsAdmin.cpp +++ b/PowerEditor/src/WinControls/PluginsAdmin/pluginsAdmin.cpp @@ -656,10 +656,10 @@ bool loadFromJson(PluginViewList & pl, const json& j) pi->_displayName = wmc.char2wchar(valStr.c_str(), CP_ACP); valStr = i.at("author").get(); - pi->_author = wmc.char2wchar(valStr.c_str(), CP_ACP); + pi->_author = wmc.char2wchar(valStr.c_str(), CP_UTF8); valStr = i.at("description").get(); - pi->_description = wmc.char2wchar(valStr.c_str(), CP_ACP); + pi->_description = wmc.char2wchar(valStr.c_str(), CP_UTF8); valStr = i.at("id").get(); pi->_id = wmc.char2wchar(valStr.c_str(), CP_ACP);