just compare url manually lol

This commit is contained in:
jjanzen 2025-02-10 17:43:34 -06:00
parent f7f75ab9aa
commit 439df5ecf0

View file

@ -6,11 +6,7 @@ function load_random_site() {
.then((obj) => { .then((obj) => {
const entries = obj; // TODO: remove myself from the list const entries = obj; // TODO: remove myself from the list
const entries_cleaned = obj.filter((item) => { const entries_cleaned = obj.filter((item) => {
console.log(item); return item.url !== "https://jjanzen.ca";
return !item.isEqual({
name: "jjanzen's website",
url: "https://jjanzen.ca",
});
}); });
console.log(entries_cleaned); console.log(entries_cleaned);
const entry = entries[Math.floor(Math.random() * entries.length)]; const entry = entries[Math.floor(Math.random() * entries.length)];