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:
Abe Jellinek 2021-08-04 02:39:43 -06:00 committed by GitHub
parent 7015c8df59
commit 4475e86eac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -431,7 +431,7 @@ Zotero.Server.Connector.GetTranslators.prototype = {
}).catch(function(e) {
sendResponseCallback(500);
throw e;
}).done();
});
}
},