Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kookxiang committed Mar 13, 2022
1 parent 71ce50f commit e922a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jellyfin.Plugin.Bangumi/OAuth/PlaybackScrobbler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private void OnPlaybackStopped(object? sender, PlaybackStopEventArgs e)
return;
}

if (!e.PlayedToCompletion || e.PlaybackPositionTicks > e.MediaInfo.RunTimeTicks * 0.8)
if (!e.PlayedToCompletion && e.PlaybackPositionTicks < e.MediaInfo.RunTimeTicks * 0.8)
{
_log.LogInformation("item #{Id} haven't finish yet, ignored", e.Item.Id);
return;
Expand Down

0 comments on commit e922a4c

Please sign in to comment.