Refactoring

pull/162/head
M66B 5 years ago
parent 5d91012867
commit 4a5f4f7ba9

@ -1168,7 +1168,8 @@ class Core {
else
sb.append(range.first).append(':').append(range.second);
}
Response[] responses = protocol.command("UID FETCH " + sb + " (UID FLAGS)", null);
String command = "UID FETCH " + sb + " (UID FLAGS)";
Response[] responses = protocol.command(command, null);
if (responses.length > 0 && responses[responses.length - 1].isOK()) {
for (Response response : responses)

Loading…
Cancel
Save