ioBroker: use name as release tag

This commit is contained in:
Steffen Lange 2025-12-03 14:46:59 +01:00
parent 0204d0ec12
commit e669e188fc

View file

@ -6,7 +6,7 @@ class IoBroker extends PatchBase {
} }
function check() : bool { function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/ioBroker/ioBroker/releases/latest')) if ($this->fetch_json('https://api.github.com/repos/ioBroker/ioBroker/releases/latest'))
return $this->parse_json('tag_name'); return $this->parse_json('name');
return false; return false;
} }
} }