just compare url manually lol
This commit is contained in:
parent
f7f75ab9aa
commit
439df5ecf0
1 changed files with 1 additions and 5 deletions
|
@ -6,11 +6,7 @@ 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 !item.isEqual({
|
||||
name: "jjanzen's website",
|
||||
url: "https://jjanzen.ca",
|
||||
});
|
||||
return item.url !== "https://jjanzen.ca";
|
||||
});
|
||||
console.log(entries_cleaned);
|
||||
const entry = entries[Math.floor(Math.random() * entries.length)];
|
||||
|
|
Loading…
Add table
Reference in a new issue