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) {
|
||||
return fetch(url).then(function (response) {
|
||||
if (response.status != 200) {
|
||||
return;
|
||||
return fetch(url, { headers: { Accept: "application/json" } }).then(
|
||||
function (response) {
|
||||
if (response.status != 200) {
|
||||
return;
|
||||
}
|
||||
return response.json();
|
||||
}
|
||||
return response.json();
|
||||
});
|
||||
);
|
||||
},
|
||||
|
||||
mapRemoteMessage: function (message) {
|
||||
|
|
Loading…
Reference in New Issue