Fix MageFrame title

This commit is contained in:
Winston Huang 2015-10-28 09:33:41 -07:00
parent 024f13ce9a
commit 0af814f3d0

View file

@ -372,7 +372,7 @@ public class MageFrame extends javax.swing.JFrame implements MageClient {
private void setWindowTitle() {
setTitle(TITLE_NAME + " Client: "
+ version == null ? "<not available>" : version.toString() + " Server: "
+ (version == null ? "<not available>" : version.toString()) + " Server: "
+ ((session != null && session.isConnected()) ? session.getVersionInfo() : "<not connected>"));
}