From 863d63e6052fbc2388c02a96784a52c385f3ef27 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sat, 29 Mar 2025 23:14:24 +0100 Subject: [PATCH] Paint.NET: update regex --- modules/PaintNet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/PaintNet.php b/modules/PaintNet.php index 5bbd4bd..12bf0b0 100644 --- a/modules/PaintNet.php +++ b/modules/PaintNet.php @@ -6,7 +6,7 @@ class PaintNet extends PatchBase { } function check() : bool { if ($this->fetch('https://www.getpaint.net/')) - return $this->parse('/paint\.net\s+([\d\.]+)<\/b>/'); + return $this->parse('/Paint\.NET\s+([\d\.]+)<\/b>/'); return false; } }