From 1ac1e9f2dd675cbbfb39839e7a46ebf757cb62ad Mon Sep 17 00:00:00 2001 From: Ansariel Date: Thu, 19 Jun 2025 00:46:57 +0200 Subject: [PATCH] Fix build --- indra/newview/llviewerobject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp index 79cfc90db4..32388a8399 100644 --- a/indra/newview/llviewerobject.cpp +++ b/indra/newview/llviewerobject.cpp @@ -6598,7 +6598,7 @@ void LLViewerObject::setAttachedSound(const LLUUID &audio_uuid, const LLUUID& ow // Asset blacklist FSAssetBlacklist& blacklist = FSAssetBlacklist::instance(); - if (blacklist.isBlacklisted(sound_id, LLAssetType::AT_SOUND)) + if (blacklist.isBlacklisted(audio_uuid, LLAssetType::AT_SOUND)) { return; }