diff options
author | Dionysis Grigoropoulos <dgrig@erethon.com> | 2020-09-22 13:42:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-22 11:42:55 +0100 |
commit | 37ca5924bddccc37521798236339b539677d101f (patch) | |
tree | 0ef7be0f8d6378c1ad78206e5af455f6641f76cf /changelog.d | |
parent | Add a comment re #1691 (diff) | |
download | synapse-37ca5924bddccc37521798236339b539677d101f.tar.xz |
Create function to check for long names in devices (#8364)
* Create a new function to verify that the length of a device name is under a certain threshold. * Refactor old code and tests to use said function. * Verify device name length during registration of device * Add a test for the above Signed-off-by: Dionysis Grigoropoulos <dgrig@erethon.com>
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/8364.bugfix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/changelog.d/8364.bugfix b/changelog.d/8364.bugfix new file mode 100644 index 0000000000..7b82cbc388 --- /dev/null +++ b/changelog.d/8364.bugfix @@ -0,0 +1,2 @@ +Fix a bug where during device registration the length of the device name wasn't +limited. |