From 657c49d4410c39fe0cd3b3b519bcd935feb9690f Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 20 Mar 2025 10:12:28 +0100 Subject: [PATCH] =?UTF-8?q?-=20Bugfix=20Sichtbarkeit=20Berichte=20f=C3=BCr?= =?UTF-8?q?=20Unterschriften?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Service/Plugins/QueryService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Service/Plugins/QueryService.cs b/Service/Plugins/QueryService.cs index 5c06c7dbd..406bcd9f3 100644 --- a/Service/Plugins/QueryService.cs +++ b/Service/Plugins/QueryService.cs @@ -76,7 +76,7 @@ namespace BeWo.Service.Plugins { if (query.Oid > 1000) { - if (query.Title.Contains("Unterschrift") || query.Title.Contains("Monatsunterschrift")) + if (query.Title.ToLower().Contains("unterschrift")) { return AppSettings.ShowSignatures; }