aboutsummaryrefslogtreecommitdiffstats
path: root/crates/yt_dlp/src/wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'crates/yt_dlp/src/wrapper')
-rw-r--r--crates/yt_dlp/src/wrapper/info_json.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/yt_dlp/src/wrapper/info_json.rs b/crates/yt_dlp/src/wrapper/info_json.rs
index 9d63ee6..720740c 100644
--- a/crates/yt_dlp/src/wrapper/info_json.rs
+++ b/crates/yt_dlp/src/wrapper/info_json.rs
@@ -613,12 +613,15 @@ pub struct HeatMapEntry {
#[serde(deny_unknown_fields)]
pub enum InfoType {
#[serde(alias = "playlist")]
+ #[serde(rename(serialize = "playlist"))]
Playlist,
#[serde(alias = "url")]
+ #[serde(rename(serialize = "url"))]
Url,
#[serde(alias = "video")]
+ #[serde(rename(serialize = "video"))]
Video,
}