CryptoPassphrase  Diff

Differences From Artifact [3673b837ce]:

To Artifact [205d2ed613]:


224
225
226
227
228
229
230
231

232
233
234
235
236
237
238
239
240
224
225
226
227
228
229
230

231
232
233
234
235
236
237
238
239
240







-
+









				     style: UIAlertActionStyleCancel
				   handler: nil]];
	[alert addAction:
	    [UIAlertAction actionWithTitle: @"Yes"
				     style: UIAlertActionStyleDestructive
				   handler: ^ (UIAlertAction *action) {
		[self.mainViewController.siteStorage removeSite: _name];
		[self.mainViewController.tableView reloadData];
		[self.mainViewController reset];

		[self.navigationController popViewControllerAnimated: YES];
	}]];

	[self presentViewController: alert
			   animated: YES
			 completion: nil];
}
@end