forked from mirrors/bookwyrm
Quotes around titles in shelve notifications
This commit is contained in:
parent
eac8f2a2f9
commit
ea735fd570
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ def handle_shelve(user, book, shelf):
|
|||
'reading': 'started reading',
|
||||
'read': 'finished reading'
|
||||
}[shelf.identifier]
|
||||
message = '%s %s' % (verb, book.title)
|
||||
message = '%s "%s"' % (verb, book.title)
|
||||
status = create_status(user, message, mention_books=[book])
|
||||
status.status_type = 'Update'
|
||||
status.save()
|
||||
|
|
Loading…
Reference in a new issue