1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-11-08 09:32:07 +01:00

datatype text when no body response

This commit is contained in:
Kyle Spearrin 2016-12-29 16:09:28 -05:00
parent 282ddfed02
commit 3b78c0c3ed

View File

@ -68,6 +68,7 @@ function initApiService() {
$.ajax({
type: 'POST',
url: self.baseUrl + '/accounts/password-hint',
dataType: 'text',
data: JSON.stringify(request),
contentType: 'application/json; charset=utf-8',
success: function (response) {
@ -85,6 +86,7 @@ function initApiService() {
type: 'POST',
url: self.baseUrl + '/accounts/register',
data: JSON.stringify(request),
dataType: 'text',
contentType: 'application/json; charset=utf-8',
success: function (response) {
success();
@ -256,6 +258,7 @@ function initApiService() {
$.ajax({
type: 'POST',
url: self.baseUrl + '/ciphers/' + id + '/delete?access_token=' + token,
dataType: 'text',
success: function (response) {
success();
},