Merge pull request #2779 from igrechuhin/ig-crash

[ios] Fixed crash.
This commit is contained in:
Vlad Mihaylenko 2016-04-06 15:12:42 +04:00
commit 317fde62d5

View file

@ -501,6 +501,11 @@ using namespace storage;
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex >= actionSheet.numberOfButtons)
{
[actionSheet dismissWithClickedButtonIndex:0 animated:NO];
return;
}
NSString * btnTitle = [actionSheet buttonTitleAtIndex:buttonIndex];
if ([btnTitle hasPrefix:kDownloadActionTitle])
[self downloadNode:m_actionSheetId];