From ceb310bf02f52a155451be8477636c0baea25c0c Mon Sep 17 00:00:00 2001 From: Hubert Van De Walle Date: Tue, 20 Oct 2020 16:10:13 +0200 Subject: [PATCH] Fix favicon extension --- app/src/main/kotlin/views/View.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/views/View.kt b/app/src/main/kotlin/views/View.kt index 64542d1..998e19f 100644 --- a/app/src/main/kotlin/views/View.kt +++ b/app/src/main/kotlin/views/View.kt @@ -45,7 +45,7 @@ abstract class View(staticFileResolver: StaticFileResolver) { @Suppress("NOTHING_TO_INLINE") private inline fun HEAD.icons() { - link(rel = "apple-touch-icon", href = "/apple-touch-icon.ico") { attributes["sizes"] = "180x180" } + link(rel = "apple-touch-icon", href = "/apple-touch-icon.png") { attributes["sizes"] = "180x180" } link(rel = "icon", href = "/favicon-32x32.png", type = "image/png") { attributes["sizes"] = "32x32" } link(rel = "icon", href = "/favicon-16x16.png", type = "image/png") { attributes["sizes"] = "16x16" } link(rel = "manifest", href = "/site.webmanifest")