Skip to content

Commit

Permalink
Merge pull request #715 from Stremio/fix/server-missing-proxy_streams…
Browse files Browse the repository at this point in the history
…_enabled-settings-key

fix(streaming_server): Settings::proxy_streams_enabled - default to `false` if not present
  • Loading branch information
elpiel authored Aug 19, 2024
2 parents 928f185 + c301d63 commit 75e674d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/types/streaming_server/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ pub struct Settings {
#[serde_as(deserialize_as = "DefaultOnError")]
pub transcode_profile: Option<String>,
pub cache_size: Option<f64>,
#[serde(default)]
pub proxy_streams_enabled: bool,
pub bt_max_connections: u64,
pub bt_handshake_timeout: u64,
Expand Down

0 comments on commit 75e674d

Please sign in to comment.