Hi Roxtar,
Thank you for reporting it. Okay, let’s look into it.
That might be a library-dependent issue.
The app is currently using axios@0.19.0 for the api requests.
Can you please try this one?
const axios = require('axios')
axios.get('https://api.inkdrop.app/')
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.log(error);
})