Skip to content

Commit d2c1b29

Browse files
committed
fix: more renaming to quoteMessageConfig
Due to some hastiness in resolving the recent merge conflicts, some parts with "coolMessagesConfig" were not renamed to "quoteMessagesConfig". Take care of that. Signed-off-by: Chris Sdogkos <[email protected]>
1 parent 5db7cff commit d2c1b29

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

application/config.json.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
"videoLinkPattern": "http(s)?://www\\.youtube.com.*",
195195
"pollIntervalInMinutes": 10
196196
},
197-
"coolMessagesConfig": {
197+
"quoteMessagesConfig": {
198198
"minimumReactions": 2,
199199
"boardChannelPattern": "quotes",
200200
"reactionEmoji": "⭐"

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -436,12 +436,14 @@ public String getSelectRolesChannelPattern() {
436436
}
437437

438438
/**
439-
* The configuration of the cool messages config. The configuration of the quote board feature.
440-
* Quotes user selected messages
439+
* The configuration of the quote messages config.
441440
*
442-
* @return configuration of cool messages config
441+
* <p>
442+
* >The configuration of the quote board feature. Quotes user selected messages.
443+
*
444+
* @return configuration of quote messages config
443445
*/
444-
public QuoteBoardConfig getCoolMessagesConfig() {
446+
public QuoteBoardConfig getQuoteMessagesConfig() {
445447
return quoteMessagesConfig;
446448
}
447449

0 commit comments

Comments
 (0)