[PR #3579] Add UserId filter to ActivityLog Entries endpoint #9615

Closed
opened 2026-02-07 06:05:27 +03:00 by OVERLORD · 0 comments
Owner

Original Pull Request: https://github.com/jellyfin/jellyfin/pull/3579

State: closed
Merged: Yes


Fixes Dashboard Activity / Alerts

The UserId field is now Guid.Empty instead of null
Previously:

if (hasUserId.HasValue)
{
	if (hasUserId.Value)
	{
		whereClauses.Add("UserId not null");
	}
	else
	{
		whereClauses.Add("UserId is null");
	}
}
**Original Pull Request:** https://github.com/jellyfin/jellyfin/pull/3579 **State:** closed **Merged:** Yes --- Fixes Dashboard Activity / Alerts The UserId field is now `Guid.Empty` instead of null Previously: ```c# if (hasUserId.HasValue) { if (hasUserId.Value) { whereClauses.Add("UserId not null"); } else { whereClauses.Add("UserId is null"); } } ```
OVERLORD added the pull-request label 2026-02-07 06:05:27 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#9615