Compare commits

...

1 Commits

Author SHA1 Message Date
Daniel Dietzler 49d5055a70 fix: oauth account linking 2026-07-06 11:25:44 +02:00
+1 -1
View File
@@ -426,7 +426,7 @@ export class AuthService extends BaseService {
throw new BadRequestException('This OAuth account has already been linked to another user.');
}
if (auth.session) {
if (auth.session && sid) {
await this.sessionRepository.update(auth.session.id, { oauthSid: sid });
}