projects
/
minecraft_web.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4524f6e
)
Last character of the last nick was cut
author
Greg Burri
<greg.burri@gmail.com>
Sun, 27 Jun 2021 09:22:57 +0000
(11:22 +0200)
committer
Greg Burri
<greg.burri@gmail.com>
Sun, 27 Jun 2021 09:22:57 +0000
(11:22 +0200)
backend/src/minecraft_controller.rs
patch
|
blob
|
history
diff --git
a/backend/src/minecraft_controller.rs
b/backend/src/minecraft_controller.rs
index
9287cda
..
8b06f66
100644
(file)
--- a/
backend/src/minecraft_controller.rs
+++ b/
backend/src/minecraft_controller.rs
@@
-89,7
+89,7
@@
fn get_status_from_rcon(rcon_password: &str) -> StatusFromRcon {
Ok(resp) =>
\r
match resp.body.find(':') {
\r
Some(i) if i < resp.body.len() -1 =>
\r
- resp.body[i + 1..resp.body.len()
- 1
]
\r
+ resp.body[i + 1..resp.body.len()]
\r
.split(',')
\r
.map(|nick| nick.trim().to_string())
\r
.filter(|nick| !nick.is_empty())
\r