Skip to content

Commit 606126e

Browse files
committed
fix(configuration): small typo
1 parent c0c865c commit 606126e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

application/config.json.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"pollIntervalInMinutes": 10
117117
},
118118
"memberCountCategoryPattern": "Info",
119-
"dynamicVoiceChannelPattern": [
119+
"dynamicVoiceChannelPatterns": [
120120
"Gaming",
121121
"Support/Studying Room",
122122
"Chit Chat"

application/src/main/java/org/togetherjava/tjbot/config/Config.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private Config(@JsonProperty(value = "token", required = true) String token,
9696
@JsonProperty(value = "rssConfig", required = true) RSSFeedsConfig rssFeedsConfig,
9797
@JsonProperty(value = "selectRolesChannelPattern",
9898
required = true) String selectRolesChannelPattern,
99-
@JsonProperty(value = "dynamicVoiceChannelPattern",
99+
@JsonProperty(value = "dynamicVoiceChannelPatterns",
100100
required = true) List<String> dynamicVoiceChannelPatterns) {
101101
this.token = Objects.requireNonNull(token);
102102
this.githubApiKey = Objects.requireNonNull(githubApiKey);

0 commit comments

Comments
 (0)