Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
GNOME
fractal
Commits
3e224af4
Commit
3e224af4
authored
Apr 01, 2021
by
Wyatt Turner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added error log when failing to join room by ID
parent
80555ede
Pipeline
#272588
passed with stages
in 38 minutes and 59 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
fractal-gtk/src/appop/room.rs
fractal-gtk/src/appop/room.rs
+2
-1
No files found.
fractal-gtk/src/appop/room.rs
View file @
3e224af4
...
...
@@ -533,7 +533,8 @@ impl AppOp {
let
room_id
=
match
try_room_id
{
Ok
(
room_id
)
=>
room_id
,
Err
(
_
)
=>
{
Err
(
err
)
=>
{
error!
(
"The room ID is malformed: {}"
,
err
);
let
error
=
i18n
(
"The room ID is malformed"
);
APPOP!
(
show_error
,
(
error
));
return
;
...
...
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