mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-26 11:31:08 +00:00
Catch value errors when parsing imported ratings
This commit is contained in:
parent
8cf7c5c392
commit
c77436fc12
1 changed files with 5 additions and 2 deletions
|
@ -252,8 +252,11 @@ class ImportItem(models.Model):
|
|||
@property
|
||||
def rating(self):
|
||||
"""x/5 star rating for a book"""
|
||||
if self.normalized_data.get("rating"):
|
||||
if not self.normalized_data.get("rating"):
|
||||
return None
|
||||
try:
|
||||
return float(self.normalized_data.get("rating"))
|
||||
except ValueError:
|
||||
return None
|
||||
|
||||
@property
|
||||
|
|
Loading…
Reference in a new issue