Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
poezio
poezio
Commits
d9a01bb7
Verified
Commit
d9a01bb7
authored
Apr 08, 2022
by
Maxime Buquet
Browse files
Fixes
#3552
: Prevent traceback on unhandled tab type (Thanks tofu)
Signed-off-by:
Maxime “pep” Buquet
<
pep@bouah.net
>
parent
304686c6
Pipeline
#4503
passed with stages
in 16 minutes and 51 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
plugins/reorder.py
plugins/reorder.py
+1
-1
No files found.
plugins/reorder.py
View file @
d9a01bb7
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment