We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The embed_html field is of type Text:
embed_html
sc.embedder/src/sc/embedder/content/embedder.py
Line 118 in 73fedda
Text fields are saved as unicode by default. However, the sc.embedder form treats the data before saving and saves it as a string:
sc.embedder
Line 320 in 73fedda
This is bad because it causes incompatibility with data saved programmatically, with the transmogrifier, which saves the data as unicode.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
embed_html
field is of type Text:sc.embedder/src/sc/embedder/content/embedder.py
Line 118 in 73fedda
Text fields are saved as unicode by default. However, the
sc.embedder
form treats the data before saving and saves it as a string:sc.embedder/src/sc/embedder/content/embedder.py
Line 320 in 73fedda
This is bad because it causes incompatibility with data saved programmatically, with the transmogrifier, which saves the data as unicode.
The text was updated successfully, but these errors were encountered: