mirror of
https://github.com/zotero/zotero.git
synced 2026-09-20 00:12:49 +00:00
Fix error when connector requests translators (#2135)
The call to done() resulted in a 500 response and prevented the connector from fetching the list of available translators.
This commit is contained in:
parent
7015c8df59
commit
4475e86eac
1 changed files with 1 additions and 1 deletions
|
|
@ -431,7 +431,7 @@ Zotero.Server.Connector.GetTranslators.prototype = {
|
|||
}).catch(function(e) {
|
||||
sendResponseCallback(500);
|
||||
throw e;
|
||||
}).done();
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue