Remove wrongful match statement

This commit is contained in:
Flori Weber 2023-06-22 19:54:39 +02:00
parent 6c0faa29f3
commit c00cc215fe
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ impl Channel {
)) ))
.bearer_auth(user.token()) .bearer_auth(user.token())
.body(to_string(&modify_data).unwrap()); .body(to_string(&modify_data).unwrap());
let new_channel = match common::deserialize_response::<Channel>( let new_channel = common::deserialize_response::<Channel>(
request, request,
user, user,
crate::api::limits::LimitType::Channel, crate::api::limits::LimitType::Channel,