mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-11-23 18:45:34 +01:00
Fixed issue with prefixes.
This commit is contained in:
parent
663d70546b
commit
3077b7c77d
@ -119,7 +119,7 @@ public class Message {
|
||||
* @return the prefixed message
|
||||
*/
|
||||
public String getPrefixedMessage() {
|
||||
return TextUtils.formatText((prefix == null ? "" : this.prefix) + " " + this.message.toText());
|
||||
return TextUtils.formatText((prefix == null ? "" : this.prefix.toText()) + " " + this.message.toText());
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user