From 77cdc0fa4c2ad13918704fe6643676002a4c1d80 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Thu, 24 Jan 2019 12:30:14 -0500 Subject: [PATCH] Stop spamming the log whenever preferences opens!! --- indra/llui/llnotifications.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp index 5c9dfb74a..1f2f4cec4 100644 --- a/indra/llui/llnotifications.cpp +++ b/indra/llui/llnotifications.cpp @@ -284,7 +284,8 @@ LLNotificationForm::LLNotificationForm(const LLSD& sd) } else { - LL_WARNS() << "Invalid form data " << sd << LL_ENDL; + if (!sd.isUndefined()) + LL_WARNS() << "Invalid form data " << sd << LL_ENDL; mFormData = LLSD::emptyArray(); } }