diff --git a/couchpotato/core/plugins/searcher/__init__.py b/couchpotato/core/plugins/searcher/__init__.py index f499e2bd..fdec62c5 100644 --- a/couchpotato/core/plugins/searcher/__init__.py +++ b/couchpotato/core/plugins/searcher/__init__.py @@ -35,7 +35,7 @@ config = [{ 'name': 'preferred_method', 'label': 'First search', 'description': 'Which of the methods do you prefer', - 'default': 'nzb', + 'default': 'both', 'type': 'dropdown', 'values': [('usenet & torrents', 'both'), ('usenet', 'nzb'), ('torrents', 'torrent')], }, diff --git a/couchpotato/core/plugins/status/main.py b/couchpotato/core/plugins/status/main.py index 91c2858f..338749d6 100644 --- a/couchpotato/core/plugins/status/main.py +++ b/couchpotato/core/plugins/status/main.py @@ -22,6 +22,7 @@ class StatusPlugin(Plugin): 'failed': 'Failed', 'deleted': 'Deleted', 'ignored': 'Ignored', + 'available': 'Available', } def __init__(self):