mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Merge pull request #153 from ComlOnline/rustformat
Update the Auth panic to be rustfmt
This commit is contained in:
commit
1257f98915
1 changed files with 4 additions and 1 deletions
|
@ -82,7 +82,10 @@ pub fn authenticate(
|
|||
|
||||
Some((0xad, data)) => {
|
||||
let error_data: APLoginFailed = protobuf::parse_from_bytes(data.as_ref()).unwrap();
|
||||
panic!("Authentication failed with reason: {:?}", error_data.get_error_code())
|
||||
panic!(
|
||||
"Authentication failed with reason: {:?}",
|
||||
error_data.get_error_code()
|
||||
)
|
||||
}
|
||||
|
||||
Some((cmd, _)) => panic!("Unexpected packet {:?}", cmd),
|
||||
|
|
Loading…
Reference in a new issue