Fixed counting hits

This commit is contained in:
Sayantan Santra 2023-04-03 17:41:52 -05:00
parent 7f6ba5175f
commit 98d10cfd5b
1 changed files with 1 additions and 1 deletions

View File

@ -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()
}
}