Skip to content

Commit

Permalink
Fix macro detection in DNS record generation (#978)
Browse files Browse the repository at this point in the history
  • Loading branch information
oddlama authored Dec 5, 2024
1 parent 8fd983f commit e86a9c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/jmap/src/api/management/dns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ impl DnsManagement for Server {
}
_ => (),
}
if !has_macros && value.contains("%%{") {
if !has_macros && value.contains("%{") {
has_macros = true;
}
keys.keys.insert(key, value);
Expand Down

0 comments on commit e86a9c1

Please sign in to comment.