Skip to content

Commit

Permalink
backport: fix clippy warning duplicate naming
Browse files Browse the repository at this point in the history
  • Loading branch information
jb-alvarado committed Oct 8, 2023
1 parent b96e765 commit 53aebc7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::{
use std::env;

use chrono::{prelude::*, Duration};
use ffprobe::{ffprobe, Format, Stream};
use ffprobe::{ffprobe, Format, Stream as FFStream};
use rand::prelude::*;
use regex::Regex;
use reqwest::header;
Expand Down Expand Up @@ -205,8 +205,8 @@ fn is_empty_string(st: &String) -> bool {
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
pub struct MediaProbe {
pub format: Option<Format>,
pub audio_streams: Vec<Stream>,
pub video_streams: Vec<Stream>,
pub audio_streams: Vec<FFStream>,
pub video_streams: Vec<FFStream>,
}

impl MediaProbe {
Expand Down

0 comments on commit 53aebc7

Please sign in to comment.