Merge pull request #1322 from bookwyrm-social/want-to-read-header
Fixes want to read status header
This commit is contained in:
commit
e76163ffae
|
@ -71,7 +71,7 @@ def get_header_template(status):
|
||||||
if isinstance(status, models.Boost):
|
if isinstance(status, models.Boost):
|
||||||
status = status.boosted_status
|
status = status.boosted_status
|
||||||
try:
|
try:
|
||||||
header_type = status.reading_status
|
header_type = status.reading_status.replace("-", "_")
|
||||||
if not header_type:
|
if not header_type:
|
||||||
raise AttributeError()
|
raise AttributeError()
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
|
|
Loading…
Reference in New Issue