From a49de556c2fe7a877a688038a065767f6f384b35 Mon Sep 17 00:00:00 2001 From: Fabian Jakobs Date: Fri, 20 Nov 2015 09:38:37 +0000 Subject: [PATCH] fix logout --- plugins/c9.core/http-xhr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/c9.core/http-xhr.js b/plugins/c9.core/http-xhr.js index 4f81302f..8f34ba46 100644 --- a/plugins/c9.core/http-xhr.js +++ b/plugins/c9.core/http-xhr.js @@ -88,7 +88,7 @@ define(function(require, module, exports) { xhr.abort(); var err = new Error("Timeout"); err.code = "ETIMEOUT"; - err.data = {url: url, query: options.query}; + err.data = {url: url, query: options.query, timeout: timeout}; done(err); }, timeout); }