Fix error message for undefined download directory (#87)

This commit is contained in:
Moritz Poldrack 2023-04-25 12:16:50 +02:00 committed by Ulyssa
parent ad3b40d538
commit b6a318dfe3
No known key found for this signature in database
GPG key ID: 1B3965A3D18B9B64

View file

@ -324,7 +324,7 @@ impl Directories {
let downloads = self
.downloads
.or_else(dirs::download_dir)
.expect("no dirs.download value configured!");
.expect("no dirs.downloads value configured!");
DirectoryValues { cache, logs, downloads }
}