Skip to content

Commit

Permalink
Add tip about quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
WouterTinus committed Jan 26, 2019
1 parent d5cb9f1 commit 039eb00
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/Plugins/ValidationPlugins/Dns/Manual/Manual.cs
Expand Up @@ -20,7 +20,8 @@ public override void CreateRecord(string recordName, string token)
_input.Show("Domain", _identifier, true);
_input.Show("Record", recordName);
_input.Show("Type", "TXT");
_input.Show("Content", token);
_input.Show("Content", $"\"{token}\"");
_input.Show("Note", "Some DNS control panels add quotes automatically. Only one set is required.");
_input.Wait("Please press enter after you've created and verified the record");
}

Expand All @@ -29,7 +30,7 @@ public override void DeleteRecord(string recordName, string token)
_input.Show("Domain", _identifier, true);
_input.Show("Record", recordName);
_input.Show("Type", "TXT");
_input.Show("Content", token);
_input.Show("Content", $"\"{token}\"");
_input.Wait("Please press enter after you've deleted the record");
}
}
Expand Down

0 comments on commit 039eb00

Please sign in to comment.