From f18077cd9befac911daca524b589e50e39cf244d Mon Sep 17 00:00:00 2001 From: Fabian Jakobs Date: Mon, 23 Nov 2015 11:41:21 +0000 Subject: [PATCH] fix: Cannot call method 'setUser' of undefined fixes https://github.com/c9/newclient/issues/10691 --- plugins/c9.error/raygun.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/c9.error/raygun.js b/plugins/c9.error/raygun.js index 6ceecb36..6a51ce0b 100644 --- a/plugins/c9.error/raygun.js +++ b/plugins/c9.error/raygun.js @@ -61,7 +61,7 @@ function plugin(options, imports, register) { errorClient: clients.error, warningClient: clients.warning, customClient: function(name) { - return client[name]; + return clients[name]; }, customData: customData }