mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
Remove unnecessary into
This commit is contained in:
parent
2769d342d2
commit
f1808a7088
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ impl InlineQueryResultAudio {
|
|||
}
|
||||
|
||||
pub fn audio_duration(mut self, val: Seconds) -> Self {
|
||||
self.audio_duration = Some(val.into());
|
||||
self.audio_duration = Some(val);
|
||||
self
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue