We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c99829 commit b6bb596Copy full SHA for b6bb596
crates/syn2mas/src/synapse_reader/mod.rs
@@ -73,7 +73,7 @@ impl FullUserId {
73
return Err(ExtractLocalpartError::NoAtSigil);
74
};
75
76
- let Some((localpart, server_name)) = without_sigil.rsplit_once(':') else {
+ let Some((localpart, server_name)) = without_sigil.split_once(':') else {
77
return Err(ExtractLocalpartError::NoSeparator);
78
79
0 commit comments