filter myself from the list
This commit is contained in:
parent
439df5ecf0
commit
86e0e3cf93
1 changed files with 2 additions and 4 deletions
|
@ -4,13 +4,11 @@ function load_random_site() {
|
||||||
fetch(webring_all_url)
|
fetch(webring_all_url)
|
||||||
.then((response) => response.json())
|
.then((response) => response.json())
|
||||||
.then((obj) => {
|
.then((obj) => {
|
||||||
const entries = obj; // TODO: remove myself from the list
|
const entries = obj.filter((item) => {
|
||||||
const entries_cleaned = obj.filter((item) => {
|
|
||||||
return item.url !== "https://jjanzen.ca";
|
return item.url !== "https://jjanzen.ca";
|
||||||
});
|
});
|
||||||
console.log(entries_cleaned);
|
|
||||||
const entry = entries[Math.floor(Math.random() * entries.length)];
|
const entry = entries[Math.floor(Math.random() * entries.length)];
|
||||||
// window.location.href = entry.url;
|
window.location.href = entry.url;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue