1
0
Fork 0
mirror of https://codeberg.org/demostf/sync.git synced 2026-06-03 16:44:07 +02:00

remote unneeded clone

This commit is contained in:
Robin Appelman 2017-10-05 23:53:24 +02:00
commit d5ed7520f0

View file

@ -121,7 +121,7 @@ fn main() {
let result: Result<SyncCommand, serde_json::Error> = serde_json::from_str(msg.borrow()); let result: Result<SyncCommand, serde_json::Error> = serde_json::from_str(msg.borrow());
match result { match result {
Ok(command) => { Ok(command) => {
handle_command(command, &mut sessions, tok.clone(), &mut ws); handle_command(command, &mut sessions, tok, &mut ws);
} }
_ => {} _ => {}
} }