CryptoPassphrase  Diff

Differences From Artifact [d298a69c34]:

To Artifact [4ea5d4d01f]:


81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102

	if ([self.mainViewController.siteStorage hasSite: name]) {
		showAlert(self, @"Site Already Exists",
		    @"Please pick a name that does not exist yet.");
		return;
	}

	[self.mainViewController.siteStorage
	    setSite: name
	     length: length
	     legacy: self.legacySwitch.on];

	[self.mainViewController.tableView reloadData];

	[self.navigationController popViewControllerAnimated: YES];
}

- (IBAction)cancel: (id)sender
{
	[self.navigationController popViewControllerAnimated: YES];
}
@end







|
<
|
|
<
|









81
82
83
84
85
86
87
88

89
90

91
92
93
94
95
96
97
98
99
100

	if ([self.mainViewController.siteStorage hasSite: name]) {
		showAlert(self, @"Site Already Exists",
		    @"Please pick a name that does not exist yet.");
		return;
	}

	[self.mainViewController.siteStorage setSite: name

					      length: length
					      legacy: self.legacySwitch.on];

	[self.mainViewController reset];

	[self.navigationController popViewControllerAnimated: YES];
}

- (IBAction)cancel: (id)sender
{
	[self.navigationController popViewControllerAnimated: YES];
}
@end