diff options
Diffstat (limited to 'includes/jobs/PKSystem.php')
-rw-r--r-- | includes/jobs/PKSystem.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/includes/jobs/PKSystem.php b/includes/jobs/PKSystem.php index 6583e4f..117b6ad 100644 --- a/includes/jobs/PKSystem.php +++ b/includes/jobs/PKSystem.php @@ -23,15 +23,18 @@ if ($app["other"]["id"] === $system) { echo("Not using authentication\n"); $ctx = stream_context_create([ 'http' => [ - 'method' => 'GET' + 'method' => 'GET', + 'headers' => "User-Agent: Mozilla/5.0 (+Cold-Haze/1.1)\r\n" ] ]); } echo("Fetching...\n"); +sleep(1); $data = file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system", false, $ctx); +json_decode($data); -if (trim($data) !== "" && $data !== false) { +if (trim($data) !== "" && $data !== false && json_last_error() === JSON_ERROR_NONE) { echo("Data is valid, saved it\n"); file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/general.json", $data); } else { |