Persist PDS URL for session resumption (#3620)
* fix: store PDS URL for session resumption * fix: handle a few more cases * fix: blocking resumption should also use pds url * refactor: do it in the construct itself * fix: revert ce96223
This commit is contained in:
parent
05212ca9e3
commit
15055cb8c4
2 changed files with 21 additions and 4 deletions
|
@ -15,6 +15,7 @@ const accountSchema = z.object({
|
|||
refreshJwt: z.string().optional(), // optional because it can expire
|
||||
accessJwt: z.string().optional(), // optional because it can expire
|
||||
deactivated: z.boolean().optional(),
|
||||
pdsUrl: z.string().optional(),
|
||||
})
|
||||
export type PersistedAccount = z.infer<typeof accountSchema>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue