From 0f63efdec4e176c07fcf7a88d4d4b2c76282bf7d Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sat, 21 Jun 2025 17:18:13 +0200 Subject: [PATCH] ESPurna: remove version prefix --- modules/ESPurna.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ESPurna.php b/modules/ESPurna.php index e3d4cc1..52b5858 100644 --- a/modules/ESPurna.php +++ b/modules/ESPurna.php @@ -6,7 +6,7 @@ class ESPurna extends PatchBase { } function check() : bool { if ($this->fetch_json('https://api.github.com/repos/xoseperez/espurna/releases/latest')) - return $this->parse_json('tag_name'); + return $this->parse_json('tag_name', '/github(.+)/'); return false; } }