From c49eb243e52f9a5a06206136e6419e7976dffdfd Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Mon, 13 Dec 2021 15:57:18 +0100 Subject: [PATCH] Scilab: fix URL --- modules/Scilab.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/Scilab.php b/modules/Scilab.php index 625871f..92291fe 100644 --- a/modules/Scilab.php +++ b/modules/Scilab.php @@ -5,8 +5,8 @@ class Scilab extends PatchBase { parent::__construct('ESI Group', 'Scilab', 'https://www.scilab.org/download'); } function check() : bool { - if ($this->fetch('https://www.scilab.org/download', false)) - return $this->parse('/\/download\/([\d\.]+)/'); + if ($this->fetch('https://www.scilab.org/latest', false)) + return $this->parse('/\/download\/scilab-([\d\.]+)/'); return false; } }