mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
Fixed: Error on bulk delete from queue
This commit is contained in:
@@ -243,6 +243,7 @@ export const actionHandlers = handleThunks({
|
||||
url: '/release',
|
||||
method: 'POST',
|
||||
contentType: 'application/json',
|
||||
dataType: 'json',
|
||||
data: JSON.stringify(payload)
|
||||
}).request;
|
||||
|
||||
|
||||
@@ -115,6 +115,7 @@ export const actionHandlers = handleThunks({
|
||||
const promise = createAjaxRequest({
|
||||
url: '/author',
|
||||
method: 'POST',
|
||||
dataType: 'json',
|
||||
contentType: 'application/json',
|
||||
data: JSON.stringify(newAuthor)
|
||||
}).request;
|
||||
@@ -153,6 +154,7 @@ export const actionHandlers = handleThunks({
|
||||
const promise = createAjaxRequest({
|
||||
url: '/book',
|
||||
method: 'POST',
|
||||
dataType: 'json',
|
||||
contentType: 'application/json',
|
||||
data: JSON.stringify(newBook)
|
||||
}).request;
|
||||
|
||||
Reference in New Issue
Block a user