fix error message
This commit is contained in:
parent
e2a2774664
commit
5fc7c469c3
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ class GitServerSettingTableViewController: UITableViewController {
|
||||||
if gitRepositoryURLTextField.text == "" {
|
if gitRepositoryURLTextField.text == "" {
|
||||||
alertMessage = "Git Server is not set. Please set the Git server first."
|
alertMessage = "Git Server is not set. Please set the Git server first."
|
||||||
} else if authenticationMethod == "" {
|
} else if authenticationMethod == "" {
|
||||||
alertMessage = "PGP Key is not set. Please set your PGP Key first."
|
alertMessage = "Authentication method is not set. Please set your authentication method first."
|
||||||
}
|
}
|
||||||
let alert = UIAlertController(title: "Cannot Save Settings", message: alertMessage, preferredStyle: UIAlertControllerStyle.alert)
|
let alert = UIAlertController(title: "Cannot Save Settings", message: alertMessage, preferredStyle: UIAlertControllerStyle.alert)
|
||||||
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil))
|
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue