Skip to content

Commit 3310202

Browse files
fixed record
1 parent c9a5442 commit 3310202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AcmeCaPlugin/Clients/DNS/InfobloxDnsProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public async Task<bool> CreateRecordAsync(string recordName, string txtValue)
6363
}
6464

6565
// Delete any existing records with the same name first to ensure only one record exists
66-
var searchUrl = $"record:txt?name={Uri.EscapeDataString(cleanName)}";
66+
var searchUrl = $"./record:txt?name={Uri.EscapeDataString(cleanName)}";
6767
var searchResponse = await _httpClient.GetAsync(searchUrl);
6868

6969
if (searchResponse.IsSuccessStatusCode)

0 commit comments

Comments
 (0)