diff options
author | Minteck ⭐ <nekostarfan@gmail.com> | 2021-10-15 18:36:49 +0000 |
---|---|---|
committer | Minteck ⭐ <nekostarfan@gmail.com> | 2021-10-15 18:36:49 +0000 |
commit | 9564f06eaf79b97aab66e09fd84252255480c76e (patch) | |
tree | d7d8a6fda75a43fd52685f1efb986219ffc6ff42 | |
parent | 428edfddd58041bcdc2d8545768da297743e99d4 (diff) | |
download | webring-9564f06eaf79b97aab66e09fd84252255480c76e.tar.gz webring-9564f06eaf79b97aab66e09fd84252255480c76e.tar.bz2 webring-9564f06eaf79b97aab66e09fd84252255480c76e.zip |
Update 'FtechWebring.client.js'
-rw-r--r-- | FtechWebring.client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FtechWebring.client.js b/FtechWebring.client.js index c20924d..05dd72b 100644 --- a/FtechWebring.client.js +++ b/FtechWebring.client.js @@ -44,7 +44,7 @@ function _ftww_processData(raw) { previous = sites[sites.length - 1]["url"]; // If this is the first site, roll out to the last one } - if (sites[$thisSite + 1]) { // We check if there's a next site in the list + if (sites[thisSite + 1]) { // We check if there's a next site in the list next = sites[thisSite + 1]["url"]; } else { next = sites[0]["url"]; // If this is the last site, roll out to the first one |