From d69f911ffbfd4622b7f96d1e2421cf4133a507fd Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sun, 9 May 2021 14:45:55 +0200 Subject: [PATCH] Krita: fix HTML regex --- modules/Krita.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Krita.php b/modules/Krita.php index 44ea9dd..1f63159 100644 --- a/modules/Krita.php +++ b/modules/Krita.php @@ -6,7 +6,7 @@ class Krita extends PatchBase { } function check() : bool { if ($this->fetch('https://krita.org/en/download/krita-desktop/')) - return $this->parse('/

Download Krita\s+([\d\.]+)<\/h3>/'); + return $this->parse('/>Download Krita\s+([\d\.]+)<\/h3>/'); return false; } }