Added setting to choose whether to scrobble or not on rewatches

This commit is contained in:
Alexander Rufenach
2021-06-03 05:49:53 -04:00
parent 138a1bda95
commit cc6b16e8cb
4 changed files with 23 additions and 5 deletions
@@ -14,7 +14,8 @@ namespace Jellyfin.Plugin.AnilistSync.Configuration
{
ScrobbleMovies = true;
ScrobbleShows = true;
ScrobblePercentage = 70;
ScrobbleRewatches = true;
ScrobblePercentage = 80;
ScrobbleNowWatchingPercentage = 5;
MinLength = 5;
UserToken = string.Empty; // Todo: check if token is still valid
@@ -31,6 +32,8 @@ namespace Jellyfin.Plugin.AnilistSync.Configuration
/// </summary>
public bool ScrobbleShows { get; set; }
public bool ScrobbleRewatches { get; set; }
/// <summary>
/// Gets or sets scrobble percentage.
/// </summary>