From 8a404b32aad5f0d2e2c52e2fd249894ef9048618 Mon Sep 17 00:00:00 2001 From: Sarjuuk Date: Thu, 26 Feb 2026 10:35:33 +0100 Subject: [PATCH] ProfilerExclusions/Fixup * fix including all exclude groups --- endpoints/account/exclude.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints/account/exclude.php b/endpoints/account/exclude.php index 52c8b3ed..c94a8f82 100644 --- a/endpoints/account/exclude.php +++ b/endpoints/account/exclude.php @@ -34,7 +34,7 @@ class AccountExcludeResponse extends TextResponse else if ($this->_post['reset'] == 1) // defaults to unavailable $this->resetExcludes(); - else if ($this->_post['groups']) // exclude by group mask + else if ($this->_post['groups'] !== null) // exclude by group mask $this->updateGroups(); }