diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-02-23 09:02:11 -0700 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2024-02-23 09:02:11 -0700 |
| commit | a1bb23e98f8da896fc0530933c5fc74d6d4a50c3 (patch) | |
| tree | 76f130d14c53fa5adc16da95ec6e27be6ee83597 /Jellyfin.Api/Controllers/LibraryController.cs | |
| parent | 3cf0070287ae561ead456aea059e8d49e24bb63f (diff) | |
Add item id to download activity
Diffstat (limited to 'Jellyfin.Api/Controllers/LibraryController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/LibraryController.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Jellyfin.Api/Controllers/LibraryController.cs b/Jellyfin.Api/Controllers/LibraryController.cs index e357588d1..984dc7789 100644 --- a/Jellyfin.Api/Controllers/LibraryController.cs +++ b/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 |
