소스 검색

Add item id to download activity

Cody Robibero 1 년 전
부모
커밋
a1bb23e98f
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Jellyfin.Api/Controllers/LibraryController.cs

+ 1 - 0
Jellyfin.Api/Controllers/LibraryController.cs

@@ -913,6 +913,7 @@ public class LibraryController : BaseJellyfinApiController
                 User.GetUserId())
             {
                 ShortOverview = string.Format(CultureInfo.InvariantCulture, _localization.GetLocalizedString("AppDeviceValues"), User.GetClient(), User.GetDevice()),
+                ItemId = item.Id.ToString("N", CultureInfo.InvariantCulture)
             }).ConfigureAwait(false);
         }
         catch