I suspect something inside a Promise is not working inside fetchival. Its is not working with Version 9.1.3, and no error messages are shown. The promise never gest fulfilled.
Code example bellow (work on Chrome and Firefox).
console.log('Console log works here');
fetchival(module.settings.endpoint(['user', apiKey])).get().then(function(response) {
console.log("Iam here, but never works on safari");
console.log(response);
});
I suspect something inside a Promise is not working inside fetchival. Its is not working with Version 9.1.3, and no error messages are shown. The promise never gest fulfilled.
Code example bellow (work on Chrome and Firefox).