diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-06-07 07:43:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-07 07:43:35 -0400 |
commit | 9dc3293e0b3a5cbf6fcc4a0cef7386b531190882 (patch) | |
tree | 97a293afac5f1b5e7649de833f2b6be5112b6e00 /changelog.d | |
parent | Prevent breaking old sqlite's when media retention is enabled (#12977) (diff) | |
download | synapse-9dc3293e0b3a5cbf6fcc4a0cef7386b531190882.tar.xz |
Consolidate the logic of delete_device/delete_devices. (#12970)
By always using delete_devices and sometimes passing a list with a single device ID. Previously these methods had gotten out of sync with each other and it seems there's little benefit to the single-device variant.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/12970.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/12970.misc b/changelog.d/12970.misc new file mode 100644 index 0000000000..8f874aa07b --- /dev/null +++ b/changelog.d/12970.misc @@ -0,0 +1 @@ +Remove the `delete_device` method and always call `delete_devices`. |