mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-25 23:28:37 -06:00
Fixed counting hits
This commit is contained in:
parent
7f6ba5175f
commit
98d10cfd5b
1 changed files with 1 additions and 1 deletions
|
@ -49,9 +49,9 @@ async fn link_handler(shortlink: web::Path<String>) -> impl Responder {
|
|||
let shortlink_str = shortlink.to_string();
|
||||
let longlink = utils::get_longurl(shortlink_str);
|
||||
if longlink == "".to_string() {
|
||||
database::add_hit(shortlink.as_str());
|
||||
Redirect::to("/err/404")
|
||||
} else {
|
||||
database::add_hit(shortlink.as_str());
|
||||
Redirect::to(longlink).permanent()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue