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/routes | |
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/routes')
-rw-r--r-- | src/lib/routes/links.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/routes/links.ts b/src/lib/routes/links.ts index 10c99b62d..908db7cba 100644 --- a/src/lib/routes/links.ts +++ b/src/lib/routes/links.ts @@ -1,4 +1,4 @@ -import {AppBskyGraphDefs, AtUri} from '@atproto/api' +import {type AppBskyGraphDefs, AtUri} from '@atproto/api' import {isInvalidHandle} from '#/lib/strings/handles' |