Skip to content

Commit 232abea

Browse files
committed
Fixed Issue
1 parent 0e49bdc commit 232abea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/mangorage/mangobot/modules/logs/LogAnalyser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void addAll(LogAnalyserModule... modules) {
5353
}
5454

5555
public void readLog(StringBuilder message, String log) {
56-
log = log.replace("\\r?\\n", "\\n");
56+
log = log.replaceAll("\\r?\\n", "\\n");
5757
for(LogAnalyserModule mod : mods) {
5858
mod.analyse(log, message);
5959
}

0 commit comments

Comments
 (0)