mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
fix(desktop): update deeplink route for extension store (#100)
* fix(desktop): update deeplink route for extension store * chore(desktop): bump package version to 0.1.21
This commit is contained in:
parent
5573923a76
commit
183af3fb84
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kksh/desktop",
|
||||
"version": "0.1.20",
|
||||
"version": "0.1.21",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -58,7 +58,7 @@ export async function handleKunkunProtocol(parsedUrl: URL) {
|
||||
const parsed = v.parse(StorePathSearchParams, params)
|
||||
openMainWindow()
|
||||
if (parsed.identifier) {
|
||||
goto(`/extension/store/${parsed.identifier}`)
|
||||
goto(i18n.resolveRoute(`/app/extension/store/${parsed.identifier}`))
|
||||
} else {
|
||||
goto(i18n.resolveRoute("/app/extension/store"))
|
||||
}
|
||||
@ -66,7 +66,7 @@ export async function handleKunkunProtocol(parsedUrl: URL) {
|
||||
emitRefreshDevExt()
|
||||
} else if (href.startsWith(DEEP_LINK_PATH_AUTH_CONFIRM)) {
|
||||
openMainWindow()
|
||||
goto(`/auth/confirm?${parsedUrl.searchParams.toString()}`)
|
||||
goto(i18n.resolveRoute(`/app/auth/confirm?${parsedUrl.searchParams.toString()}`))
|
||||
} else {
|
||||
console.error("Invalid path:", pathname)
|
||||
toast.error("Invalid path", {
|
||||
|
Loading…
x
Reference in New Issue
Block a user