diff --git a/birb.js b/birb.js index f299455..a8b9657 100644 --- a/birb.js +++ b/birb.js @@ -911,7 +911,7 @@ Promise.all([loadSpriteSheetPixels(SPRITE_SHEET), loadSpriteSheetPixels(DECORATI // Render all sticky notes for (let stickyNote of stickyNotes) { - if (stickyNote.site === window.location.href.split("?")[0]) { + if (stickyNote.site.split("?")[0] === window.location.href.split("?")[0]) { renderStickyNote(stickyNote); } } diff --git a/build.js b/build.js index 3553706..8273cd6 100644 --- a/build.js +++ b/build.js @@ -24,7 +24,7 @@ const userScriptHeader = `// ==UserScript== // @name Browser Bird // @namespace https://idreesinc.com -// @version 2025-08-16-1 +// @version 2025-08-16-2 // @description birb // @author Idrees // @downloadURL https://github.com/IdreesInc/Browser-Bird/raw/refs/heads/main/dist/birb.user.js diff --git a/dist/birb.js b/dist/birb.js index 17b1e37..6f7eeb9 100644 --- a/dist/birb.js +++ b/dist/birb.js @@ -1229,7 +1229,7 @@ Promise.all([loadSpriteSheetPixels(SPRITE_SHEET), loadSpriteSheetPixels(DECORATI // Render all sticky notes for (let stickyNote of stickyNotes) { - if (stickyNote.site === window.location.href.split("?")[0]) { + if (stickyNote.site.split("?")[0] === window.location.href.split("?")[0]) { renderStickyNote(stickyNote); } } diff --git a/dist/birb.user.js b/dist/birb.user.js index c5934b2..7f811e1 100644 --- a/dist/birb.user.js +++ b/dist/birb.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Browser Bird // @namespace https://idreesinc.com -// @version 2025-08-16-1 +// @version 2025-08-16-2 // @description birb // @author Idrees // @downloadURL https://github.com/IdreesInc/Browser-Bird/raw/refs/heads/main/dist/birb.user.js @@ -1243,7 +1243,7 @@ Promise.all([loadSpriteSheetPixels(SPRITE_SHEET), loadSpriteSheetPixels(DECORATI // Render all sticky notes for (let stickyNote of stickyNotes) { - if (stickyNote.site === window.location.href.split("?")[0]) { + if (stickyNote.site.split("?")[0] === window.location.href.split("?")[0]) { renderStickyNote(stickyNote); } }