From 08e26c13ab22fd07442d2323ba98a7b6cb56dc8a Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Wed, 16 Sep 2020 02:29:15 +0300 Subject: Add more url info in error alert --- Juick/Model/User.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Juick/Model/User.m') 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) { -- cgit v1.2.3