From 6bec73393aa86060fdd3c62885e630c9b1f1cf3c Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sat, 8 Jul 2023 10:48:18 +0200 Subject: [PATCH] Remotely: update url --- modules/Remotely.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/Remotely.php b/modules/Remotely.php index 0e51883..504831a 100644 --- a/modules/Remotely.php +++ b/modules/Remotely.php @@ -2,10 +2,10 @@ class Remotely extends PatchBase { function __construct() { - parent::__construct('Jared Goodwin', 'Remotely', 'https://remotely.one/'); + parent::__construct('Jared Goodwin', 'Remotely', 'https://github.com/immense/Remotely'); } function check() : bool { - if ($this->fetch_json('https://api.github.com/repos/lucent-sea/Remotely/releases/latest')) + if ($this->fetch_json('https://api.github.com/repos/immense/Remotely/releases/latest')) return $this->parse_json('tag_name'); return false; }