From f2ac2db86f79aa2d60e9ba8fa92fc32337a1c7f9 Mon Sep 17 00:00:00 2001 From: Safihre Date: Fri, 14 Oct 2016 14:37:41 +0200 Subject: [PATCH] Allow also "vol01-03.par" on top of "vol01+03.par" --- sabnzbd/nzbstuff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sabnzbd/nzbstuff.py b/sabnzbd/nzbstuff.py index 35da090..3a0fcdf 100644 --- a/sabnzbd/nzbstuff.py +++ b/sabnzbd/nzbstuff.py @@ -1454,7 +1454,7 @@ class NzbObject(TryList): def _get_first_meta(type): values = self.nzo_info.get('x-oznzb-rating-' + type, None) or self.nzo_info.get('x-rating-' + type, None) return values[0] if values and isinstance(values, list) else values - rating_types = ['url', 'host', 'video', 'videocnt', 'audio', 'audiocnt', 'voteup', + rating_types = ['url', 'host', 'video', 'videocnt', 'audio', 'audiocnt', 'voteup', 'votedown', 'spam', 'confirmed-spam', 'passworded', 'confirmed-passworded'] fields = {} for k in rating_types: