PatchBot/modules/ExifCleaner.php
2021-03-07 14:21:07 +01:00

14 lines
339 B
PHP

<?php
class ExifCleaner extends PatchBase {
function __construct() {
parent::__construct('szTheory', 'ExifCleaner', 'https://exifcleaner.com/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/szTheory/exifcleaner/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>