diff --git a/chrome/content/zotero/xpcom/http.js b/chrome/content/zotero/xpcom/http.js index 5e5a0decc..5a2ec0587 100644 --- a/chrome/content/zotero/xpcom/http.js +++ b/chrome/content/zotero/xpcom/http.js @@ -737,7 +737,7 @@ Zotero.HTTP = new function() { this.isWriteMethod = function (method) { - return method == 'POST' || method == 'PUT' || method == 'PATCH'; + return method == 'POST' || method == 'PUT' || method == 'PATCH' || method == 'DELETE'; };