Browse Source
Corrected Spelling
Changed it from Chache to Cache on Line 207
pull/511/head
Cubity_First
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/config.rs
|
|
@ -204,7 +204,7 @@ make_config! { |
|
|
|
data_folder: String, false, def, "data".to_string(); |
|
|
|
/// Database URL
|
|
|
|
database_url: String, false, auto, |c| format!("{}/{}", c.data_folder, "db.sqlite3"); |
|
|
|
/// Icon chache folder
|
|
|
|
/// Icon cache folder
|
|
|
|
icon_cache_folder: String, false, auto, |c| format!("{}/{}", c.data_folder, "icon_cache"); |
|
|
|
/// Attachments folder
|
|
|
|
attachments_folder: String, false, auto, |c| format!("{}/{}", c.data_folder, "attachments"); |
|
|
|