diff options
author | Minteck <nekostarfan@gmail.com> | 2021-08-22 00:21:50 +0200 |
---|---|---|
committer | Minteck <nekostarfan@gmail.com> | 2021-08-22 00:21:50 +0200 |
commit | a30a97e7110645cc6aafc96878cda664e180e4b2 (patch) | |
tree | f636ea57e146fba06630f4cfc420b702636ebf7f | |
parent | 4353c3d94a4a24dda5ced59c0e5dcd0b3626f245 (diff) | |
download | webring-a30a97e7110645cc6aafc96878cda664e180e4b2.tar.gz webring-a30a97e7110645cc6aafc96878cda664e180e4b2.tar.bz2 webring-a30a97e7110645cc6aafc96878cda664e180e4b2.zip |
Fixed the thing that Jae broke
-rw-r--r-- | FtechWebring.php | 2 |
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; |