From 302dcf67c26c421c30b67f5d83ab59551443f836 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Tue, 17 Jan 2023 12:19:45 +0100 Subject: [PATCH] Bugfix: matchAnyRule() Return value must be of type bool, none returned --- snappymail/v/0.0.0/app/libraries/snappymail/http/secfetch.php | 1 + 1 file changed, 1 insertion(+) diff --git a/snappymail/v/0.0.0/app/libraries/snappymail/http/secfetch.php b/snappymail/v/0.0.0/app/libraries/snappymail/http/secfetch.php index 6d262fbfa..536317b99 100644 --- a/snappymail/v/0.0.0/app/libraries/snappymail/http/secfetch.php +++ b/snappymail/v/0.0.0/app/libraries/snappymail/http/secfetch.php @@ -143,6 +143,7 @@ abstract class SecFetch } } } + return false; } }