From 96301d6a9c78b8d1826cce5322e331cc4ff28785 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Thu, 24 Sep 2015 18:21:01 +0100 Subject: [PATCH] not --- pandora/item/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/item/models.py b/pandora/item/models.py index 15b968d9a..a3b745889 100644 --- a/pandora/item/models.py +++ b/pandora/item/models.py @@ -1540,7 +1540,7 @@ class Item(models.Model): existing = self.annotations.filter(layer=layer).exclude(value='') # only import on 0xdb for now or if forced manually # since this will remove all existing subtitles - if not (settings.USE_IMDB or existing.count() == 0) or not force: + if not (settings.USE_IMDB and existing.count() == 0) or not force: self.add_empty_clips() return False with transaction.commit_on_success():