Skip to content
Snippets Groups Projects
Commit 0e6f7908 authored by lovetox's avatar lovetox
Browse files

Support old print_status tag in Bookmarks

parent 4c482cbf
No related branches found
No related tags found
No related merge requests found
......@@ -518,8 +518,10 @@ class BookmarksHelper:
minimize_val = minimize_val.getData()
print_status = conf.getTag('print_status', namespace=NS_GAJIM_BM)
if not print_status:
print_status = conf.getTagData('show_status')
if not print_status: # not there, try old Gajim behaviour
print_status = conf.getTagData('print_status')
if not print_status: # not there, try old Gajim behaviour
print_status = conf.getTagData('show_status')
else:
print_status = print_status.getData()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment