diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2023-01-24 23:48:47 +0100 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2023-01-24 23:48:47 +0100 |
| commit | 414eb45899253cd0530b35b6f93044111c7b225e (patch) | |
| tree | d4c56990d7bcd651d965fa9376fe678053fcc063 /Jellyfin.Api/Controllers/ItemLookupController.cs | |
| parent | a728f0993e873e8baa719e2ce51d8b80e43bb876 (diff) | |
| parent | 6b006a576dc5b708ec57615ea8b65586a6183ee2 (diff) | |
Merge branch 'master' into network-rewrite
Diffstat (limited to 'Jellyfin.Api/Controllers/ItemLookupController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/ItemLookupController.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Controllers/ItemLookupController.cs b/Jellyfin.Api/Controllers/ItemLookupController.cs index 34893d682..b6c5504db 100644 --- a/Jellyfin.Api/Controllers/ItemLookupController.cs +++ b/Jellyfin.Api/Controllers/ItemLookupController.cs @@ -248,10 +248,10 @@ namespace Jellyfin.Api.Controllers { var item = _libraryManager.GetItemById(itemId); _logger.LogInformation( - "Setting provider id's to item {0}-{1}: {2}", + "Setting provider id's to item {ItemId}-{ItemName}: {@ProviderIds}", item.Id, item.Name, - JsonSerializer.Serialize(searchResult.ProviderIds)); + searchResult.ProviderIds); // Since the refresh process won't erase provider Ids, we need to set this explicitly now. item.ProviderIds = searchResult.ProviderIds; |
