diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2022-11-01 23:11:57 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2022-11-01 23:11:57 +0200 |
commit | 39e08b34b10fa16f22a97caa426e034d7b2afc9d (patch) | |
tree | a10181b44eb6a2062aa33ddea5064b43f491c860 /indra/llcommon | |
parent | d4d5d4018d89ebb13e1c47c9bb500af17a64d1be (diff) | |
parent | d0e07c770b978d57210a5403bc42cc48e700ef63 (diff) |
Merge remote-tracking branch 'RyeMutt/viewer/llsd-usage-fixes' into DRTVWR-570-maint-Q
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llerror.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index 919d2dabc4..56fb7c21ca 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -943,7 +943,7 @@ namespace LLError for (a = sets.beginArray(), end = sets.endArray(); a != end; ++a) { const LLSD& entry = *a; - if (entry.isMap() && !entry.emptyMap()) + if (entry.isMap() && entry.size() != 0) { ELevel level = decodeLevel(entry["level"]); |