mirror of
https://github.com/NohamR/Pocket-Bird.git
synced 2026-05-24 19:59:36 +00:00
Fix url comparison
This commit is contained in:
2
dist/birb.js
vendored
2
dist/birb.js
vendored
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user