diff --git a/modules/MozillaThunderbird.php b/modules/MozillaThunderbird.php index cba0a12..0b40080 100644 --- a/modules/MozillaThunderbird.php +++ b/modules/MozillaThunderbird.php @@ -6,7 +6,7 @@ class MozillaThunderbird extends PatchBase { } function check() : bool { if ($this->fetch('https://www.thunderbird.net/de/thunderbird/all/')) - return $this->parse('_"https://download\.mozilla\.org/\?product=thunderbird-([\d\.]+)(-SSL)?&(amp;)?os=win&(amp;)?lang=en-US"_'); + return $this->parse('_//download\.mozilla\.org/\?product=thunderbird-([\d\.]+)(-SSL)?&(amp;)?os=win&(amp;)?lang=en-US_'); return false; } } diff --git a/modules/Nextcloud.php b/modules/Nextcloud.php index 0c97b91..f5127ab 100644 --- a/modules/Nextcloud.php +++ b/modules/Nextcloud.php @@ -6,7 +6,7 @@ class Nextcloud extends PatchBase { } function check() : bool { if ($this->fetch('https://nextcloud.com/install/')) - return $this->parse('_https://download.nextcloud.com/server/releases/nextcloud-([\d\.]+)\.zip_'); + return $this->parse('_//download.nextcloud.com/server/releases/nextcloud-([\d\.]+)\.zip_'); return false; } }