mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Fix incorrect cache initialisation causing crash on startup
This commit is contained in:
parent
b76543b9a7
commit
efabb03631
1 changed files with 11 additions and 11 deletions
22
src/main.rs
22
src/main.rs
|
@ -254,18 +254,18 @@ fn setup(args: &[String]) -> Setup {
|
|||
mapped_volume: !matches.opt_present("mixer-linear-volume"),
|
||||
};
|
||||
|
||||
let use_audio_cache = !matches.opt_present("disable-audio-cache");
|
||||
let cache = matches.opt_str("c").map(|cache_path| {
|
||||
let use_audio_cache = !matches.opt_present("disable-audio-cache");
|
||||
let system_cache_directory = matches
|
||||
.opt_str("system-cache")
|
||||
.unwrap_or(String::from(cache_path.clone()));
|
||||
|
||||
let cache_directory = matches.opt_str("c").unwrap_or(String::from(""));
|
||||
let system_cache_directory = matches
|
||||
.opt_str("system-cache")
|
||||
.unwrap_or(String::from(cache_directory.clone()));
|
||||
|
||||
let cache = Some(Cache::new(
|
||||
PathBuf::from(cache_directory),
|
||||
PathBuf::from(system_cache_directory),
|
||||
use_audio_cache,
|
||||
));
|
||||
Cache::new(
|
||||
PathBuf::from(cache_path),
|
||||
PathBuf::from(system_cache_directory),
|
||||
use_audio_cache,
|
||||
)
|
||||
});
|
||||
|
||||
let initial_volume = matches
|
||||
.opt_str("initial-volume")
|
||||
|
|
Loading…
Reference in a new issue