summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--remoting/webapp/host_native_messaging.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/webapp/host_native_messaging.js b/remoting/webapp/host_native_messaging.js
index 102c32e..f4d2e3c 100644
--- a/remoting/webapp/host_native_messaging.js
+++ b/remoting/webapp/host_native_messaging.js
@@ -164,7 +164,7 @@ remoting.HostNativeMessaging.prototype.handleIncomingMessage_ =
this.version_ = getStringAttr(message, 'version');
// Old versions of the native messaging host do not return this list.
// Those versions default to the empty list of supported features.
- getArrayAttr(message, 'supportedFeatures', []);
+ this.supportedFeatures_ = getArrayAttr(message, 'supportedFeatures', []);
onDone();
break;