Skip to content

Commit

Permalink
Support Chunked Value
Browse files Browse the repository at this point in the history
  • Loading branch information
fredronnv committed Dec 19, 2024
1 parent b974df8 commit 71a63d5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions octodns_bind/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ def _apply(self, plan):
if record._type in ('SPF', 'TXT'):
# TXT values need to be quoted
value = value.replace('"', '\\"')
value = record.chunked_value(value)
value = f'"{value}"'
name = '@' if record.name == '' else record.name
if name == prev_name:
Expand Down

0 comments on commit 71a63d5

Please sign in to comment.