mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Merge pull request #3607 from ruler501/summerproject
Fix Occasional Exception
This commit is contained in:
commit
3e61465d8e
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ public class PlayerResponse implements Serializable {
|
|||
}
|
||||
|
||||
public String toString() {
|
||||
return new StringBuilder(responseString)
|
||||
return new StringBuilder((responseString == null) ? "null" : responseString)
|
||||
.append(',')
|
||||
.append(responseUUID)
|
||||
.append(',')
|
||||
|
|
Loading…
Reference in a new issue