Skip to content
Snippets Groups Projects
Commit 8fcf6916 authored by Ansariel's avatar Ansariel Committed by Guru
Browse files

Load correct localized version of emoji dictionary and guard against access violation exception

parent c2eec5b1
No related branches found
No related tags found
No related merge requests found
......@@ -141,7 +141,13 @@ void LLEmojiDictionary::initClass()
LLSD data;
const std::string filename = gDirUtilp->findSkinnedFilenames(LLDir::XUI, SKINNED_EMOJI_FILENAME, LLDir::CURRENT_SKIN).front();
auto filenames = gDirUtilp->findSkinnedFilenames(LLDir::XUI, SKINNED_EMOJI_FILENAME, LLDir::CURRENT_SKIN);
if (filenames.empty())
{
LL_WARNS() << "Emoji file characters not found" << LL_ENDL;
return;
}
const std::string filename = filenames.back();
llifstream file(filename.c_str());
if (file.is_open())
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment