summaryrefslogtreecommitdiff
path: root/includes/jobs/PKMembers.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/jobs/PKMembers.php')
-rw-r--r--includes/jobs/PKMembers.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/includes/jobs/PKMembers.php b/includes/jobs/PKMembers.php
index c6ad897..83a8a7e 100644
--- a/includes/jobs/PKMembers.php
+++ b/includes/jobs/PKMembers.php
@@ -24,15 +24,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/members", 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");
$parsed = json_decode($data, true);