mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-08 18:54:26 -04:00
Merge pull request #4562 from crobibero/playback-stop-notification
Don't send activity event if notification type is null
This commit is contained in:
commit
2d415374d6
@ -59,6 +59,12 @@ namespace Jellyfin.Server.Implementations.Events.Consumers.Session
|
|||||||
|
|
||||||
var user = eventArgs.Users[0];
|
var user = eventArgs.Users[0];
|
||||||
|
|
||||||
|
var notificationType = GetPlaybackStoppedNotificationType(item.MediaType);
|
||||||
|
if (notificationType == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
await _activityManager.CreateAsync(new ActivityLog(
|
await _activityManager.CreateAsync(new ActivityLog(
|
||||||
string.Format(
|
string.Format(
|
||||||
CultureInfo.InvariantCulture,
|
CultureInfo.InvariantCulture,
|
||||||
@ -66,7 +72,7 @@ namespace Jellyfin.Server.Implementations.Events.Consumers.Session
|
|||||||
user.Username,
|
user.Username,
|
||||||
GetItemName(item),
|
GetItemName(item),
|
||||||
eventArgs.DeviceName),
|
eventArgs.DeviceName),
|
||||||
GetPlaybackStoppedNotificationType(item.MediaType),
|
notificationType,
|
||||||
user.Id))
|
user.Id))
|
||||||
.ConfigureAwait(false);
|
.ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user