Add ExifCleaner

This commit is contained in:
Steffen Lange 2021-03-07 14:21:07 +01:00
parent 54790d54fb
commit 681ea6afc1

14
modules/ExifCleaner.php Normal file
View file

@ -0,0 +1,14 @@
<?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;
}
}
?>