diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-02-10 17:40:30 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-02-10 17:40:30 -0600 |
commit | e4a321c410c6ce39d0756cd624be5da723297bc0 (patch) | |
tree | b70eee713882bf8c45187bcf64006dbeea6d2c11 /scripts/cssa-webring.js | |
parent | 185f8d63182c75f47570681d22bcf50b52360d30 (diff) |
check value of item
Diffstat (limited to 'scripts/cssa-webring.js')
-rw-r--r-- | scripts/cssa-webring.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/cssa-webring.js b/scripts/cssa-webring.js index 561923f..acfd4e0 100644 --- a/scripts/cssa-webring.js +++ b/scripts/cssa-webring.js @@ -6,6 +6,8 @@ function load_random_site() { .then((obj) => { const entries = obj; // TODO: remove myself from the list const entries_cleaned = obj.filter((item) => { + console.log(item); + return true; return !item.is({ name: "jjanzen's website", url: "https://jjanzen.ca", |