From 840383def31edd7b60f49bbc82303bf642c0d1ec Mon Sep 17 00:00:00 2001 From: Darl Date: Thu, 2 Apr 2026 11:56:42 -0500 Subject: Eliminate pointless mutelist cache fallback attempt, instead manually set state to guard against a possible cache write to disk to be safe Signed-off-by: Darl --- indra/newview/llmutelist.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp index 02a5a43c6b..39588ba51d 100644 --- a/indra/newview/llmutelist.cpp +++ b/indra/newview/llmutelist.cpp @@ -833,7 +833,9 @@ void LLMuteList::requestFromServer(const LLUUID& agent_id) if (gDisconnected) { LL_WARNS() << "Trying to request mute list when disconnected!" << LL_ENDL; - tryLoadCacheFallback(agent_id, "disconnected before request"); + // Guard against potentially writing back to disk since we're not recovering our connection + mLoadState = ML_LOADED; + mLoadSource = MLS_FALLBACK_CACHE; return; } if (!gAgent.getRegion()) -- cgit v1.3