breautek commented on issue #1840: URL: https://github.com/apache/cordova-android/issues/1840#issuecomment-3254460979
You would need to look at the console and the error code of the network request. If it lacks a response status code (which seems to be the case since only provisional headers are shown) it means that the connection was interrupted, either by the client or the server. There could be several reasons why that might occur including but not limiting to: - CORS violation - General network error (e.g. packet loss or network disconnect) - Network timeout (most browsers implement a hard limit of 60 seconds) but the timeout length may vary by browser and by web-server. - SSL/TLS issues Generally speaking on chrome, there will be a console print on the network error that would indicate what client of error you're dealing with. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
