diff options
Diffstat (limited to 'ishtar_common')
-rw-r--r-- | ishtar_common/models_common.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/models_common.py b/ishtar_common/models_common.py index 0d7a5a686..e5bafdcd5 100644 --- a/ishtar_common/models_common.py +++ b/ishtar_common/models_common.py @@ -2801,6 +2801,8 @@ class CompleteIdentifierItem(models.Model, ImageContainerModel): cached_label_key = 'cached_label' if getattr(self, 'GEO_LABEL', None): cached_label_key = getattr(self, 'GEO_LABEL', None) + if hasattr(self, "CACHED_COMPLETE_ID"): + cached_label_key = self.CACHED_COMPLETE_ID complete_identifier = getattr(self, cached_label_key) return complete_identifier |