aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinteck <nekostarfan@gmail.com>2021-08-22 00:21:50 +0200
committerMinteck <nekostarfan@gmail.com>2021-08-22 00:21:50 +0200
commita30a97e7110645cc6aafc96878cda664e180e4b2 (patch)
treef636ea57e146fba06630f4cfc420b702636ebf7f
parent4353c3d94a4a24dda5ced59c0e5dcd0b3626f245 (diff)
downloadwebring-a30a97e7110645cc6aafc96878cda664e180e4b2.tar.gz
webring-a30a97e7110645cc6aafc96878cda664e180e4b2.tar.bz2
webring-a30a97e7110645cc6aafc96878cda664e180e4b2.zip
Fixed the thing that Jae broke
-rw-r--r--FtechWebring.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/FtechWebring.php b/FtechWebring.php
index bd99318..caf4b27 100644
--- a/FtechWebring.php
+++ b/FtechWebring.php
@@ -67,7 +67,7 @@ $raw = @file_get_contents("https://jae.fi/webring/members");
// If it failed, we stop here
if ($raw !== false) {
// We decode our JSON
- $sites = json_decode($raw, true);
+ $sites = json_decode($raw, true)["members"];
// We find the index corresponding to this website
$thisSite = null;