From b79214a6afafe32b0d076d1d21d826ba856c8919 Mon Sep 17 00:00:00 2001 From: Matthijs van Henten Date: Tue, 19 Jan 2016 17:53:26 +0100 Subject: [PATCH 1/2] add subtype to whitelist --- plugins/c9.error/error_handler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/c9.error/error_handler.js b/plugins/c9.error/error_handler.js index a898d16b..b2d59148 100644 --- a/plugins/c9.error/error_handler.js +++ b/plugins/c9.error/error_handler.js @@ -122,7 +122,7 @@ function plugin(options, imports, register) { var allowedErrorKeys = [ "message", "projectState", "premium", "retryIn", "progress", - "oldHost", "blocked", "className", "errors" + "oldHost", "blocked", "className", "errors", "sub_type" ]; allowedErrorKeys.forEach(function(key) { From 71e4b2d30de37b97facfaa603e61856ac15a134a Mon Sep 17 00:00:00 2001 From: Matthijs van Henten Date: Tue, 19 Jan 2016 18:02:08 +0100 Subject: [PATCH 2/2] no underscore --- plugins/c9.error/error_handler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/c9.error/error_handler.js b/plugins/c9.error/error_handler.js index b2d59148..af2a29db 100644 --- a/plugins/c9.error/error_handler.js +++ b/plugins/c9.error/error_handler.js @@ -122,7 +122,7 @@ function plugin(options, imports, register) { var allowedErrorKeys = [ "message", "projectState", "premium", "retryIn", "progress", - "oldHost", "blocked", "className", "errors", "sub_type" + "oldHost", "blocked", "className", "errors", "subtype" ]; allowedErrorKeys.forEach(function(key) {