Index: remoting/webapp/crd/js/server_log_entry.js |
diff --git a/remoting/webapp/crd/js/server_log_entry.js b/remoting/webapp/crd/js/server_log_entry.js |
index 6a6dd0f4aeda267e18337ea3c31d17b0e5783c18..130056c8aeaa2a78f2de5c4905117ec8f821ba2c 100644 |
--- a/remoting/webapp/crd/js/server_log_entry.js |
+++ b/remoting/webapp/crd/js/server_log_entry.js |
@@ -231,7 +231,7 @@ remoting.ServerLogEntry.makeClientSessionStateChange = function(state, |
remoting.ServerLogEntry.VALUE_EVENT_NAME_SESSION_STATE_); |
entry.set_(remoting.ServerLogEntry.KEY_SESSION_STATE_, |
remoting.ServerLogEntry.getValueForSessionState_(state)); |
- if (connectionError.tag != remoting.Error.NONE) { |
+ if (connectionError.tag.isError()) { |
Jamie
2015/03/11 22:16:38
isError() is a method on Error, not Tag?
John Williams
2015/03/12 02:46:20
Done.
|
entry.set_(remoting.ServerLogEntry.KEY_CONNECTION_ERROR_, |
remoting.ServerLogEntry.getValueForError_(connectionError)); |
} |