diff --git a/pandora/item/models.py b/pandora/item/models.py index a9f438a..3edaa86 100644 --- a/pandora/item/models.py +++ b/pandora/item/models.py @@ -660,7 +660,10 @@ class Item(models.Model): for key in self.facet_keys + ['title']: current_values = self.get(key, []) if key == 'title': - current_values = [current_values] + if current_values: + current_values = [current_values] + else: + current_values = [] ot = self.get('original_title') if ot: current_values.append(ot)