You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);
});
The text was updated successfully, but these errors were encountered:
Just to confirm what I'v said, i have replaced the fetchival Ajax code by a random library (https://github.com/yanatan16/nanoajax), and it works in Safari.
// Expose fetch so that other polyfills can be used// Bind fetch to window to avoid TypeError: Illegal invocationfetchival.fetch=typeoffetch!=='undefined' ? fetch.bind(window) : null
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).
The text was updated successfully, but these errors were encountered: