From f31a8317555826f8675caefc61016d1de4d7342c Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sat, 25 Feb 2023 12:20:15 +0100 Subject: [PATCH] Wireshark: update regex --- modules/Wireshark.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Wireshark.php b/modules/Wireshark.php index a9bfe8e..09c0871 100644 --- a/modules/Wireshark.php +++ b/modules/Wireshark.php @@ -6,7 +6,7 @@ class Wireshark extends PatchBase { } function check() : bool { if ($this->fetch('https://www.wireshark.org/download.html')) - return $this->parse('/Stable Release \(([\d\.]+)\)/'); + return $this->parse('/Stable Release: ([\d\.]+)/'); return false; } }