Updated list command to handle errors

This commit is contained in:
2025-04-30 21:49:09 -04:00
parent aa38d3c29c
commit 973054517c
2 changed files with 51 additions and 27 deletions

View File

@@ -49,7 +49,8 @@ fn main() -> Result<()> {
}
// List devices
else if args.list {
RtlSdrDevice::list()
RtlSdrDevice::list();
Ok(())
}
// Handle decode mode
else if let Some(mut hex_string) = args.decode {