Skip to content

Commit 61c1604

Browse files
committed
todo
1 parent c085f03 commit 61c1604

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

core/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,7 @@ async fn confirm_version(
392392
// add license and modify cargo.toml
393393
// code signing for windows?
394394
// fix bug where multiple start/cancel clicks stack while waiting for transfer to cancel, at least on linux
395+
// wifi networks not being deleted on linux (when hosting)?
395396
// update screenshots?
396397
// show qr code after refresh
397398
// test pulling wifi card, quitting program, etc.

core/src/linux.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ pub fn stop_hotspot(peer_resource: &PeerResource) -> Result<(), Box<dyn Error>>
109109
let stderr = String::from_utf8_lossy(&command_output.stderr);
110110
Err(format!("Error stopping hotspot: {}", stderr))?;
111111
}
112-
let _output = String::from_utf8_lossy(&command_output.stdout);
112+
// let output = String::from_utf8_lossy(&command_output.stdout);
113113
// println!("Stop hotspot output: {}", output);
114114
}
115115
_ => (),

0 commit comments

Comments
 (0)