Compare commits

...

2 commits

Author SHA1 Message Date
split / May e3182b3404
bump version 2024-08-22 21:51:00 -07:00
split / May 072334443a
wait fuck 2024-08-22 21:50:47 -07:00
2 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "ava-node",
"version": "1.3.0",
"version": "1.3.1",
"private": true,
"scripts": {
"dev": "vite dev",

View file

@ -126,11 +126,13 @@ export async function getUserInfo(id: string) {
userId: userInfo.sub,
},
update: {
identifier: userInfo[configuration.userinfo.identifier]
identifier: userInfo[configuration.userinfo.identifier],
name: userInfo.name
},
create: {
userId: userInfo.sub,
identifier: userInfo[configuration.userinfo.identifier]
identifier: userInfo[configuration.userinfo.identifier],
name: userInfo.name
}
})