mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-25 23:28:37 -06:00
fix: Typo during reading slug_length, fixes #24
This commit is contained in:
parent
5bbaad3001
commit
9fc8634704
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ pub fn add_link(req: String, db: &Connection) -> (bool, String) {
|
|||
}
|
||||
|
||||
let style = env::var("slug_style").unwrap_or(String::from("Pair"));
|
||||
let mut len = env::var("slug_style")
|
||||
let mut len = env::var("slug_length")
|
||||
.ok()
|
||||
.and_then(|s| s.parse::<usize>().ok())
|
||||
.unwrap_or(8);
|
||||
|
|
Loading…
Reference in a new issue