diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-03-02 08:18:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-02 13:18:51 +0000 |
commit | 1103c5fe8a795eafc4aeedc547faa1b68d5a12f5 (patch) | |
tree | 5aa84e6e6b6e8315e9df0f8acd16120a976bef8b /changelog.d | |
parent | Move scripts directory inside synapse, exposing as setuptools entry_points (#... (diff) | |
download | synapse-1103c5fe8a795eafc4aeedc547faa1b68d5a12f5.tar.xz |
Check if instances are lists, not sequences. (#12128)
As a str is a sequence, the checks were not granular enough and would allow lists or strings, when only lists were valid.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/12128.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/12128.misc b/changelog.d/12128.misc new file mode 100644 index 0000000000..0570a8e327 --- /dev/null +++ b/changelog.d/12128.misc @@ -0,0 +1 @@ +Fix data validation to compare to lists, not sequences. |