mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-16 21:30:24 +00:00
Fix #243 Transform from Python boolean to JS boolean
This commit is contained in:
parent
fa56e3e5f9
commit
723f091096
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ def register_notify_callbacks(badge_class='live_notify_badge', # pylint: disabl
|
|||
unread_url=reverse('notifications:unread'),
|
||||
mark_all_unread_url=reverse('notifications:mark_all_as_read'),
|
||||
fetch_count=fetch,
|
||||
mark_as_read=mark_as_read
|
||||
mark_as_read=str(mark_as_read).lower()
|
||||
)
|
||||
|
||||
# add a nonce value to the script tag if one is provided
|
||||
|
|
|
|||
Loading…
Reference in a new issue