mirror of https://github.com/bastienwirtz/homer
Pass accept header when fetching the message via url
parent
c7a6f54f35
commit
a2866e1714
|
@ -67,12 +67,14 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
downloadMessage: function (url) {
|
downloadMessage: function (url) {
|
||||||
return fetch(url).then(function (response) {
|
return fetch(url, { headers: { Accept: "application/json" } }).then(
|
||||||
if (response.status != 200) {
|
function (response) {
|
||||||
return;
|
if (response.status != 200) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
return response.json();
|
||||||
}
|
}
|
||||||
return response.json();
|
);
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
mapRemoteMessage: function (message) {
|
mapRemoteMessage: function (message) {
|
||||||
|
|
Loading…
Reference in New Issue