From 0102bdc12892afe2ed58e8b25ccdb4cf0aac660e Mon Sep 17 00:00:00 2001 From: Juliusz Chroboczek Date: Thu, 13 Aug 2020 20:11:21 +0200 Subject: [PATCH] Fix typo in gotAbort. --- static/protocol.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/protocol.js b/static/protocol.js index ea27290..4f256dd 100644 --- a/static/protocol.js +++ b/static/protocol.js @@ -607,7 +607,7 @@ ServerConnection.prototype.gotClose = function(id) { * @param {string} id */ ServerConnection.prototype.gotAbort = function(id) { - let c = this.down[id]; + let c = this.up[id]; if(!c) throw new Error('unknown up stream'); if(c.onabort)