From 30bb248cd9fda16572b4e63f916286a329ebb99b Mon Sep 17 00:00:00 2001 From: TheBeastLT Date: Fri, 19 May 2023 20:43:32 +0200 Subject: [PATCH] change video size type --- src/models/player.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/player.rs b/src/models/player.rs index 1e2ca0e05..4ad5ac5c8 100644 --- a/src/models/player.rs +++ b/src/models/player.rs @@ -58,7 +58,7 @@ pub struct AnalyticsContext { #[serde(rename_all = "camelCase")] pub struct VideoParams { pub hash: Option, - pub size: Option, + pub size: Option, } #[derive(Clone, PartialEq, Eq, Serialize, Deserialize, Debug)]