Remotely: update url

This commit is contained in:
Steffen Lange 2023-07-08 10:48:18 +02:00
parent 204fafe0c2
commit 6bec73393a

View file

@ -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;
}