Add a space in logging of RFB._fail()

This commit is contained in:
Samuel Mannehed 2016-11-18 10:30:40 +01:00
parent e1f853e5ae
commit 9964ab0e8e
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@
_fail: function (msg, details) {
var fullmsg = msg;
if (typeof details !== 'undefined') {
fullmsg = msg + "(" + details + ")";
fullmsg = msg + " (" + details + ")";
}
switch (this._rfb_connection_state) {
case 'disconnecting':