From a00f610f74aaa6b44200d9a68d08890b6e461471 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Wed, 2 Oct 2024 11:29:37 +0200 Subject: [PATCH] TenEditor: update regex --- modules/TenEditor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/TenEditor.php b/modules/TenEditor.php index aa4906f..8e546d8 100644 --- a/modules/TenEditor.php +++ b/modules/TenEditor.php @@ -6,7 +6,7 @@ class TenEditor extends PatchBase { } function check() : bool { if ($this->fetch('https://sweetscape.com/010editor/')) - return $this->parse('/
v([\d\.]+)<\/div>/'); + return $this->parse('/
Current: v([\d\.]+)<\/div>/'); return false; } }