From fb5f18a4c3cc84196ec4420cd0c44664dab6b4b1 Mon Sep 17 00:00:00 2001 From: mac12m99 Date: Tue, 4 Jun 2019 21:17:06 +0200 Subject: [PATCH] little fix on mark as watched --- specials/videolibrary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specials/videolibrary.py b/specials/videolibrary.py index b32d338b..1eac3030 100644 --- a/specials/videolibrary.py +++ b/specials/videolibrary.py @@ -722,7 +722,7 @@ def mark_content_as_watched2(item): if name_file != 'tvshow' : it.library_playcounts.update({name_file: item.playcount}) - if item.contentType == 'episode' or item.contentType == 'list' or name_file == 'tvshow': + if item.contentType == 'episode' or item.contentType == 'tvshow' or item.contentType == 'list' or name_file == 'tvshow': # elif item.contentType == 'episode': name_file = os.path.splitext(os.path.basename(item.strm_path))[0] num_season = name_file [0]