Skip to content

Commit

Permalink
fix: remove slice
Browse files Browse the repository at this point in the history
  • Loading branch information
ivynya committed Aug 16, 2023
1 parent 17890c7 commit 206b717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/redirect/v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func createRouter(a *fiber.App) {
}

// if a page was found, redirect to it
log.Println("[>] " + page.ShortID + " -> " + page.RedirectURL[:25] + "...")
log.Println("[>] " + page.ShortID + " -> " + page.RedirectURL + "...")
return c.Redirect(page.RedirectURL, 302)
})
}
Expand Down

0 comments on commit 206b717

Please sign in to comment.