mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #4935 from ConfusedPolarBear/quickconnect-cleanup
Remove used quick connect tokens (cherry picked from commit 158e69c6f0efafd5157e39e7c2de80919090cec2) Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
34053b7259
commit
a486cd27a9
@ -1456,7 +1456,12 @@ namespace Emby.Server.Implementations.Session
|
||||
throw new SecurityException("Unknown quick connect token");
|
||||
}
|
||||
|
||||
request.UserId = result.Items[0].UserId;
|
||||
var info = result.Items[0];
|
||||
request.UserId = info.UserId;
|
||||
|
||||
// There's no need to keep the quick connect token in the database, as AuthenticateNewSessionInternal() issues a long lived token.
|
||||
_authRepo.Delete(info);
|
||||
|
||||
return AuthenticateNewSessionInternal(request, false);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user