From 9a6893706fe95c3736e14f4fa68f4c5dfcbc55fc Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Sun, 7 Nov 2021 16:49:36 -0500
Subject: [PATCH] Fix broken inventory translation string

---
 indra/newview/llinventoryfilter.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/newview/llinventoryfilter.cpp b/indra/newview/llinventoryfilter.cpp
index 59297b97d95..311a6b4fea1 100644
--- a/indra/newview/llinventoryfilter.cpp
+++ b/indra/newview/llinventoryfilter.cpp
@@ -74,7 +74,7 @@ LLInventoryFilter::FilterOps::FilterOps(const Params& p)
 LLInventoryFilter::LLInventoryFilter(const Params& p)
 :	mName(p.name),
 	mFilterModified(FILTER_NONE),
-	mEmptyLookupMessage("InventoryNoMatchingItems"),
+	mEmptyLookupMessage(LLTrans::getString("InventoryNoMatchingItems")),
 	mDefaultEmptyLookupMessage(""),
 	mFilterOps(p.filter_ops),
 	mBackupFilterOps(mFilterOps),
-- 
GitLab