2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-02 13:28:49 +00:00

Fix typo in getStockItemThumbnail

This commit is contained in:
Oliver 2021-06-09 11:16:37 +10:00
parent 120c371a11
commit 0c14457598

View File

@ -1298,7 +1298,7 @@ class BuildItem(models.Model):
except: except:
pass pass
if thumb_url is None and self.bom_item and self.stock_item.sub_part: if thumb_url is None and self.bom_item and self.bom_item.sub_part:
try: try:
thumb_url = self.bom_item.sub_part.image.thumbnail.url thumb_url = self.bom_item.sub_part.image.thumbnail.url
except: except: