viewer#2627 instead of checking map for being empty got empty map

master
Andrey Kleshchev 2024-09-23 20:03:58 +03:00 committed by Andrey Kleshchev
parent b589d394be
commit 22675c9a05
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ LLSettingsDay::LLSettingsDay() :
//=========================================================================
LLSD& LLSettingsDay::getSettings()
{
if (!mDaySettings.emptyMap())
if (mDaySettings.size() > 0)
{
return mDaySettings;
}