aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2024-02-23 09:02:11 -0700
committerCody Robibero <cody@robibe.ro>2024-02-23 09:02:11 -0700
commita1bb23e98f8da896fc0530933c5fc74d6d4a50c3 (patch)
tree76f130d14c53fa5adc16da95ec6e27be6ee83597
parent3cf0070287ae561ead456aea059e8d49e24bb63f (diff)
Add item id to download activity
-rw-r--r--Jellyfin.Api/Controllers/LibraryController.cs1
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