diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-07-24 16:27:58 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-07-24 16:27:58 +0200 |
commit | dc097347be5077b56a70f79c6f06b56a919232ff (patch) | |
tree | c721d1dd239126a1a9873685dcdae7215def4156 | |
parent | docs(contrib/external_commands_script.sh): Init (diff) | |
download | yt-dc097347be5077b56a70f79c6f06b56a919232ff.zip |
fix(crates/yt/config): Avoid module name re-use in `watch` config
-rw-r--r-- | crates/yt/src/config/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/yt/src/config/mod.rs b/crates/yt/src/config/mod.rs index 947e1f8..a19c25c 100644 --- a/crates/yt/src/config/mod.rs +++ b/crates/yt/src/config/mod.rs @@ -61,7 +61,7 @@ mk_config! { local_displays_length: usize =: 1000, /// How long to wait between saving the video watch progress. - watch_progress_save_intervall: Duration =: Duration::from_secs(10), + progress_save_intervall: Duration =: Duration::from_secs(10), }, commands: CommandsConfig = { /// Which command to execute, when showing the thumbnail. |