diff options
author | Marvin Borner | 2019-04-20 14:49:04 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-20 14:49:04 +0200 |
commit | 034dfe305973a0f2e7deb0c9776605664ea9b169 (patch) | |
tree | 908864d3b1a08635288a02d6f0bf51ea80ebffda /src/main/kotlin/App.kt | |
parent | 9fe9795c996a6e37e894f7e42ba8761320c47798 (diff) |
Fixed many minor things regarding stability
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r-- | src/main/kotlin/App.kt | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 50c7c18..ebdb560 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -40,12 +40,7 @@ fun main() { * Normalizes and cleans the requested url */ before("/*") { ctx -> - run { - if (URI(ctx.url()).normalize().toString() != ctx.url()) { - log.warning("Normalized url from ${ctx.url()} to ${URI(ctx.url()).normalize()}") - ctx.redirect(URI(ctx.url()).normalize().toString()) - } - } + if (URI(ctx.url()).normalize().toString() != ctx.url()) ctx.redirect(URI(ctx.url()).normalize().toString()) } /** |