Skip to content

Commit

Permalink
[F] Fix birthday toast
Browse files Browse the repository at this point in the history
  • Loading branch information
LS-KR committed Nov 3, 2024
1 parent 357dd28 commit 3a5e422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logic/easterEgg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export function handleFlowerToast(name: string) {
export function handleBirthdayToast(name: string) {
if (!localStorage.getItem('easterEggMode')) return;
if (parseInt(localStorage.getItem('easterEggMode')) == 0) return;
toast(t.birthday.happy, t.birthday.birthday.replace('{0}', name), "cake.png", null, 64, 64, null)
toast(t.birthday.happy, t.birthday.birthday.replace('{0}', name), "/img/cake.png", null, 64, 64, null)
}

export function handleEasterEgg(userid: string) {
Expand Down

0 comments on commit 3a5e422

Please sign in to comment.