diff options
| author | Patrick Barron <barronpm@gmail.com> | 2021-06-18 18:26:58 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2021-06-18 18:26:58 -0400 |
| commit | 336ba2879f325a4efd52bc7737ce94f40369bfeb (patch) | |
| tree | 56f159b85dde61ab4e1b1ca75caedde4f86301fd /Jellyfin.Server/Migrations/Routines/MigrateAuthenticationDb.cs | |
| parent | 0292936c659b25464c1bc1e1b80711f873a1a7cd (diff) | |
Re-add support for API keys
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/MigrateAuthenticationDb.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/MigrateAuthenticationDb.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/MigrateAuthenticationDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateAuthenticationDb.cs index 10afc52a1..9bcf245d3 100644 --- a/Jellyfin.Server/Migrations/Routines/MigrateAuthenticationDb.cs +++ b/Jellyfin.Server/Migrations/Routines/MigrateAuthenticationDb.cs @@ -61,7 +61,7 @@ namespace Jellyfin.Server.Migrations.Routines { dbContext.ApiKeys.Add(new ApiKey(row[3].ToString()) { - AccessToken = row[1].ToGuid(), + AccessToken = row[1].ToString(), DateCreated = row[9].ToDateTime(), DateLastActivity = row[10].ToDateTime() }); |
