From a30a97e7110645cc6aafc96878cda664e180e4b2 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 22 Aug 2021 00:21:50 +0200 Subject: Fixed the thing that Jae broke --- FtechWebring.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit