summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/models/item.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/core/models/item.php b/core/models/item.php
index da0e7eb3..8898e923 100644
--- a/core/models/item.php
+++ b/core/models/item.php
@@ -275,7 +275,12 @@ class Item_Model extends ORM_MPTT {
return null;
}
- return model_cache::get("item", $this->album_cover_item_id);
+ try {
+ return model_cache::get("item", $this->album_cover_item_id);
+ } catch (Exception $e) {
+ // It's possible (unlikely) that the item was deleted, if so keep going.
+ return null;
+ }
}
/**