We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62d467f commit e0d7d1dCopy full SHA for e0d7d1d
src/main/kotlin/app/Main.kt
@@ -19,7 +19,7 @@ fun main(args: Array<String>) {
19
val log = LoggerFactory.getLogger("app.MainKt")
20
21
val unrestricted = Config.getUnrestrictedState()?.toBoolean() == true
22
- val gtmId = Config.getGtmId() ?: ""
+ val gtmId = Config.getGtmId()
23
24
val app = Javalin.create().apply {
25
enableStandardRequestLogging()
src/main/resources/layout.vm
@@ -24,7 +24,7 @@
<link rel="shortcut icon" href="#include("/static/favicon.base64")">
</head>
26
<body data-user-id="$user">
27
- #if($gtmId != "")
+ #if($gtmId)
28
#parse("/static/gtm.vm")
29
#end
30
<main class="content">
0 commit comments