Skip to content

Commit

Permalink
Better errors in dialog
Browse files Browse the repository at this point in the history
Fixes #11
  • Loading branch information
manavo authored Jan 27, 2019
1 parent 7f26d2a commit a96a08d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Doorbell.m
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ - (void)sendUploadRequest:(NSMutableURLRequest *)request WithData:(NSData *)data
}
else if (error != nil)
{
[self generalError:[[NSString alloc] initWithFormat:@"Error, please try again (%@)", error] ];
[self generalError:[[NSString alloc] initWithFormat:@"Error, please try again (%@)", error.localizedDescription] ];
}
});
}];
Expand Down

0 comments on commit a96a08d

Please sign in to comment.