Fix AsyncSign empty lines

This commit is contained in:
Jesse Boyd 2018-01-17 12:41:08 +11:00
parent 613f6bd5c0
commit 17d3e574fb
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -28,7 +28,7 @@ public class AsyncSign extends AsyncBlockState implements Sign {
}
private String fromJson(String jsonInput) {
if (jsonInput == null) return "";
if (jsonInput == null || jsonInput.isEmpty()) return "";
return FancyMessage.deserialize(jsonInput).toOldMessageFormat();
}