Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 🐛 Fixed saving variables with \n #141

Merged
merged 2 commits into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions menuflow/nodes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,12 @@ def render_data(self, data: Dict | List | str) -> Dict | List | str:
copy_variables = self.default_variables | self.room.all_variables

try:
data = loads(data_template.render(**copy_variables))
data = convert_to_bool(data)
# if save variables have a string with \n,
# it will be replaced by ik-line-break to avoid errors when dict is dumped
# and before return, it will be replaced by \n again to keep the original string
clear_variables = dumps(copy_variables).replace("\\n", "ik-line-break")
data = data_template.render(**loads(clear_variables))
data = convert_to_bool(loads(data.replace("ik-line-break", "\\n")))
return data
except JSONDecodeError:
data = data_template.render(**copy_variables)
Expand Down