summaryrefslogtreecommitdiff
path: root/Juick/Model/User.m
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2020-09-16 02:29:15 +0300
committerGravatar Vitaly Takmazov2020-09-16 02:29:15 +0300
commit08e26c13ab22fd07442d2323ba98a7b6cb56dc8a (patch)
tree290ca796565bd34f2f1a074662b317429a3f9882 /Juick/Model/User.m
parentdae781183522e43f04726bb07a9b7ae7b88a8f9e (diff)
Add more url info in error alert
Diffstat (limited to 'Juick/Model/User.m')
-rw-r--r--Juick/Model/User.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Juick/Model/User.m b/Juick/Model/User.m
index a0c34f9..f9b2990 100644
--- a/Juick/Model/User.m
+++ b/Juick/Model/User.m
@@ -20,11 +20,11 @@
return user;
}
-+(void) throwUnableToLogin:(UIViewController *)view error:(NSError *)error {
++(void) throwUnableToLogin:(UIViewController *)view error:(NSError *)error path:(NSString *)path params:(NSDictionary *)params {
UIAlertController *alert = [UIAlertController new];
NSString *title = error.userInfo[@"url"] ? error.userInfo[@"url"] : @"Something went wrong";
[alert setTitle:title];
- [alert setMessage:error.localizedDescription];
+ [alert setMessage:[NSString stringWithFormat:@"err: %@, path: %@, params: %@", error.localizedDescription, path, params]];
[alert addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleCancel handler:nil]];
UIPopoverPresentationController *popover = [alert popoverPresentationController];
if (popover) {