diff options
-rw-r--r-- | plugins/reorder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/reorder.py b/plugins/reorder.py index d4ab464b..5769d560 100644 --- a/plugins/reorder.py +++ b/plugins/reorder.py @@ -118,7 +118,7 @@ def parse_runtime_tablist(tablist): i += 1 result = check_tab(tab) # Don't serialize gap tabs as they're recreated automatically - if result != 'empty': + if result != 'empty' and isinstance(tab, TEXT_TO_TAB.values()): props.append((i, '%s:%s' % (result, tab.jid.full))) return props |