diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2024-02-25 08:55:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-25 08:55:47 +0100 |
| commit | 321e9fb0b5e5583734b154704fc3eb39c62a2005 (patch) | |
| tree | 5aa131aab739e580f18dc2df434e56401792b2d9 /Jellyfin.Api/Controllers/LibraryController.cs | |
| parent | 714a83a74cdb5549c02643e56cacbd152024cf8a (diff) | |
| parent | a1bb23e98f8da896fc0530933c5fc74d6d4a50c3 (diff) | |
Merge pull request #11055 from crobibero/activitylog-download
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 |
