Nativescript Angular IOS : Domain=NSURLErrorDomain Code=-1001 "The request timed out." when uploading files #10459
Unanswered
Yogendhar1919
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When I am trying to upload files in the slower networks I get the below error in the xcode
uploadPhotos(): void {
let message;
this.photos = this.service.getPhotosToUpload();
if (this.photos !== null && this.photos.length > 0) {
const photosList$ = new Array<Observable<boolean[]>>;
}
When connected to a strong network LTE 3 or more bars ,5g or WIFI , I am able to upload files without any issues.
How can I increase the timeout or how can I prevent the NSURLErrorDomain Code=-1001 "The request timed out." error please help
Beta Was this translation helpful? Give feedback.
All reactions