diff --git a/pandora/item/models.py b/pandora/item/models.py index a0eaf0722..4385388a4 100644 --- a/pandora/item/models.py +++ b/pandora/item/models.py @@ -316,8 +316,7 @@ class Item(models.Model): #this does not work if another item without imdbid has the same metadata oxdbId = self.oxdb_id() if not settings.USE_IMDB: - update_poster = self.oxdbId != oxdbId - self.oxdbId = oxdbId + self.oxdbId = None elif oxdbId: if self.oxdbId != oxdbId: q = Item.objects.filter(oxdbId=oxdbId).exclude(id=self.id)