mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
Fix typo in gotAbort.
This commit is contained in:
parent
04b0951530
commit
0102bdc128
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue