diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-22 14:27:26 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-22 14:27:26 +0200 |
commit | b26ffaa3d0815bae5ea7663df8690326c4a06e56 (patch) | |
tree | 036fa7178d77521307fb0f6c4e3da27a17ea14d2 | |
parent | fix(update): Correctly treat a success as a success (diff) | |
download | yt-b26ffaa3d0815bae5ea7663df8690326c4a06e56.tar.gz yt-b26ffaa3d0815bae5ea7663df8690326c4a06e56.zip |
fix(constants): Don't set a default subtile language
Always fetching a subtitle file is rather counterproductive.
-rw-r--r-- | src/constants.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/constants.rs b/src/constants.rs index 00919ce..cb8388d 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -17,7 +17,7 @@ pub const LOCAL_COMMENTS_LENGTH: usize = 1000; // NOTE: KEEP THIS IN SYNC WITH THE `mpv_playback_speed` in `cli.rs` <2024-08-20> pub const DEFAULT_MPV_PLAYBACK_SPEED: f64 = 2.7; -pub const DEFAULT_SUBTITLE_LANGS: &str = "en"; +pub const DEFAULT_SUBTITLE_LANGS: &str = ""; pub const CONCURRENT_DOWNLOADS: u32 = 5; // We download to the temp dir to avoid taxing the disk |