diff options
Diffstat (limited to 'FtechWebring.php')
-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; |