Format group info prefix and suffix (#2677)

This commit is contained in:
Federico López 2020-10-19 10:47:36 -03:00 committed by GitHub
parent d7fa9e08f3
commit f3857090fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3139,7 +3139,7 @@ public interface Message {
builder.append(text()
.color(WHITE)
.append(text('"'))
.append(text(prefix))
.append(formatColoredValue(prefix))
.append(text('"'))
);
}
@ -3156,7 +3156,7 @@ public interface Message {
builder.append(text()
.color(WHITE)
.append(text('"'))
.append(text(suffix))
.append(formatColoredValue(suffix))
.append(text('"'))
);
}