mirror of
https://github.com/jellyfin/jellyfin-plugin-trakt.git
synced 2024-11-23 05:40:13 +00:00
update default setting
This commit is contained in:
parent
3fb2212584
commit
997c459308
@ -104,7 +104,7 @@
|
||||
currentUserConfig = {
|
||||
UserName: "",
|
||||
Password: "",
|
||||
SkipUnwatchedImportFromTrakt: false,
|
||||
SkipUnwatchedImportFromTrakt: true,
|
||||
PostWatchedHistory: true,
|
||||
ExtraLogging: false,
|
||||
ExportMediaInfo: false
|
||||
|
@ -23,5 +23,10 @@ namespace Trakt.Model
|
||||
public bool ExportMediaInfo { get; set; }
|
||||
|
||||
public String[] LocationsExcluded { get; set; }
|
||||
|
||||
public TraktUser()
|
||||
{
|
||||
SkipUnwatchedImportFromTrakt = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -390,7 +390,7 @@
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Description => "Sync Watched/Unwatched status from Trakt.tv for each MB3 user that has a configured Trakt account";
|
||||
public string Description => "Sync Watched/Unwatched status from Trakt.tv for each Emby user that has a configured Trakt account";
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
|
@ -146,7 +146,7 @@ namespace Trakt
|
||||
return;
|
||||
}
|
||||
|
||||
// Since MB3 is user profile friendly, I'm going to need to do a user lookup every time something starts
|
||||
// Since Emby is user profile friendly, I'm going to need to do a user lookup every time something starts
|
||||
var traktUser = UserHelper.GetTraktUser(e.Users.FirstOrDefault());
|
||||
|
||||
if (traktUser == null)
|
||||
|
Loading…
Reference in New Issue
Block a user