diff --git a/src/main/Plugins/ValidationPlugins/Dns/Manual/Manual.cs b/src/main/Plugins/ValidationPlugins/Dns/Manual/Manual.cs index 81cfb640d..35b949885 100644 --- a/src/main/Plugins/ValidationPlugins/Dns/Manual/Manual.cs +++ b/src/main/Plugins/ValidationPlugins/Dns/Manual/Manual.cs @@ -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"); } @@ -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"); } }