diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-07-11 00:36:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-10 16:36:53 -0500 |
commit | 377d80e21df668c50585b1131bf1b7f0528bacd0 (patch) | |
tree | 30af22f8a2034b351bdc8dedee291f588677cfd9 /src/lib/notifications/util.ts | |
parent | 22bda086d0f2e6e8656d7eb79dea7b551e587736 (diff) | |
download | voidsky-377d80e21df668c50585b1131bf1b7f0528bacd0.tar.zst |
Handle notifications on first load (#8629)
* add getInitialURL * get deep linking working * actually handle as push instead * push to route instead of setting initial path * pop to on top of notifications * fix comment * change chat-message handling * add metrics * don't reopen due to notif multiple times * extract data from notification differently on android * sorry sorry annoying naming nits, align logger --------- Co-authored-by: Eric Bailey <git@esb.lol>
Diffstat (limited to 'src/lib/notifications/util.ts')
-rw-r--r-- | src/lib/notifications/util.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/notifications/util.ts b/src/lib/notifications/util.ts new file mode 100644 index 000000000..6d00aa0e3 --- /dev/null +++ b/src/lib/notifications/util.ts @@ -0,0 +1,3 @@ +import {Logger} from '#/logger' + +export const logger = Logger.create(Logger.Context.Notifications) |