We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af6a051 commit a969761Copy full SHA for a969761
deno.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@inspatial/cloud",
3
- "version": "0.7.15",
+ "version": "0.7.16",
4
"license": "Apache-2.0",
5
"exports": {
6
".": "./mod.ts",
src/auth/auth-handler.ts
@@ -91,8 +91,7 @@ export class AuthHandler {
91
}]);
92
93
if (user) {
94
- const { accounts, sessionData: session } = await makeSessiondata(user);
95
- sessionData = session;
+ const sessionData = await makeSessiondata(user);
96
this.#inCloud.inCache.setValue("authToken", authToken, sessionData);
97
}
98
0 commit comments