Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion indra/newview/llmutelist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
Loading