From 729a6116aaab38e9431ed4f30511be62d1de2a27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Fuch=C3=9F?= Date: Sun, 28 Jul 2024 02:02:02 +0200 Subject: [PATCH] Update Config.kt Fix a copy paste error --- src/main/kotlin/org/fuchss/matrix/yarb/Config.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/fuchss/matrix/yarb/Config.kt b/src/main/kotlin/org/fuchss/matrix/yarb/Config.kt index 0ce70cd..b0279fc 100644 --- a/src/main/kotlin/org/fuchss/matrix/yarb/Config.kt +++ b/src/main/kotlin/org/fuchss/matrix/yarb/Config.kt @@ -12,7 +12,7 @@ import java.io.File /** * This is the configuration template of YARB. - * @param[prefix] the command prefix the bot listens to. By default, "mensa" + * @param[prefix] the command prefix the bot listens to. By default, "yarb" * @param[baseUrl] the base url of the matrix server the bot shall use * @param[username] the username of the bot's account * @param[password] the password of the bot's account @@ -21,7 +21,7 @@ import java.io.File * @param[offsetInMinutes] the offset for reminders in minutes. E.g. "5" means that the reminder will be sent 5 minutes before the actual time */ data class Config( - @JsonProperty override val prefix: String = "mensa", + @JsonProperty override val prefix: String = "yarb", @JsonProperty override val baseUrl: String, @JsonProperty override val username: String, @JsonProperty override val password: String,