Fix close button on bood details not returning to book list after navigating directly to book details

This commit is contained in:
Kovid Goyal 2017-02-14 09:11:56 +05:30
parent 342a63244f
commit d84af98323

View File

@ -66,7 +66,10 @@ def apply_url_state(state):
apply_url_state.back_from_current = def back_from_current(current_query):
q = current_query
if q.panel and '^' in q.panel:
q = {k:q[k] for k in q}
q.panel = q.panel.rpartition('^')[0]
if q.panel:
if '^' in q.panel:
q = {k:q[k] for k in q}
q.panel = q.panel.rpartition('^')[0]
else:
q = {'panel':'book_list'}
return q