Commit 24ae7350 authored by Ozzieisaacs's avatar Ozzieisaacs

Fix # #1127 (user template show random books in detail view not saved)

parent c60277f4
......@@ -178,6 +178,8 @@ def update_view_configuration():
config.config_default_show = sum(int(k[5:]) for k in to_save if k.startswith('show_'))
if "Show_mature_content" in to_save:
config.config_default_show |= constants.MATURE_CONTENT
if "Show_detail_random" in to_save:
config.config_default_show |= constants.DETAIL_RANDOM
config.save()
flash(_(u"Calibre-Web configuration updated"), category="success")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment