summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2025-07-11 20:36:15 +0300
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-07-11 21:12:51 +0300
commit8daa59c3299d153cd3b19ff8470284f0f2ddbea7 (patch)
tree0a70a3e3875c02d594e54a85d2c39adf5c371ae6
parentc488919ef296cd763346b48195a17d099dd19f8c (diff)
#4267 Offline messages not being requested #2
-rw-r--r--indra/newview/llmutelist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp
index b044f6ad29..f6d635f51f 100644
--- a/indra/newview/llmutelist.cpp
+++ b/indra/newview/llmutelist.cpp
@@ -219,7 +219,7 @@ bool LLMuteList::getLoadFailed() const
if (mLoadState == ML_REQUESTED)
{
constexpr F64 WAIT_SECONDS = 30;
- if (mRequestStartTime + WAIT_SECONDS > LLTimer::getTotalSeconds())
+ if (mRequestStartTime + WAIT_SECONDS < LLTimer::getTotalSeconds())
{
return true;
}