diff --git a/plexcache_setup.py b/plexcache_setup.py index 1c18d70..02ed4ce 100644 --- a/plexcache_setup.py +++ b/plexcache_setup.py @@ -210,6 +210,7 @@ def is_valid_plex_url(url): watched_move = input('\nDo you want to move watched media from the cache back to the array? [y/N] ') or 'no' if watched_move.lower() in ['n', 'no']: settings_data['watched_move'] = False + settings_data['watched_cache_expiry'] = 48 elif watched_move.lower() in ['y', 'yes']: settings_data['watched_move'] = True prompt_user_for_number('\nDefine the wwatched cache expiry duration in hours (default: 48) ', '48', 'watched_cache_expiry')