Merge pull request #4562 from crobibero/playback-stop-notification

Don't send activity event if notification type is null
This commit is contained in:
Bill Thornton 2020-11-23 14:16:03 -05:00 committed by GitHub
commit 2d415374d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,6 +59,12 @@ namespace Jellyfin.Server.Implementations.Events.Consumers.Session
var user = eventArgs.Users[0];
var notificationType = GetPlaybackStoppedNotificationType(item.MediaType);
if (notificationType == null)
{
return;
}
await _activityManager.CreateAsync(new ActivityLog(
string.Format(
CultureInfo.InvariantCulture,
@ -66,7 +72,7 @@ namespace Jellyfin.Server.Implementations.Events.Consumers.Session
user.Username,
GetItemName(item),
eventArgs.DeviceName),
GetPlaybackStoppedNotificationType(item.MediaType),
notificationType,
user.Id))
.ConfigureAwait(false);
}