From 5c077d7037b0a3c837ba65628c85929e648af4c1 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Thu, 10 Jul 2014 22:43:36 -0400 Subject: [PATCH] Suppress the annoying 404 notification from default perms --- indra/newview/llfloaterperms.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/indra/newview/llfloaterperms.cpp b/indra/newview/llfloaterperms.cpp index ba79988fc..064a4ea5d 100644 --- a/indra/newview/llfloaterperms.cpp +++ b/indra/newview/llfloaterperms.cpp @@ -233,6 +233,11 @@ private: void error(U32 status, const std::string& reason) { + // Prevent 404s from annoying the user all the tme + if (status == HTTP_NOT_FOUND) + LL_INFOS("FloaterPermsResponder") << "Failed to send default permissions to simulator. 404, reason: " << reason << LL_ENDL; + else + // // Do not display the same error more than once in a row if (reason != sPreviousReason) {