From 892562902f8a45b0eb1e890281c2a15292fe5235 Mon Sep 17 00:00:00 2001 From: Jay2k1 Date: Thu, 18 Sep 2025 20:31:02 +0200 Subject: [PATCH] fix broken manual channel ordering This fixes a small regression from #4861 (specifically, commit 0067c30) that resulted in manually reordering channels not being received by the server and hence not saved or synced. --- client/components/NetworkList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/NetworkList.vue b/client/components/NetworkList.vue index 51482594..659af67f 100644 --- a/client/components/NetworkList.vue +++ b/client/components/NetworkList.vue @@ -340,7 +340,7 @@ export default defineComponent({ moveItemInArray(netChan.network.channels, oldIndex, newIndex); - socket.emit("sort:channel", { + socket.emit("sort:channels", { network: netChan.network.uuid, order: netChan.network.channels.map((c) => c.id), });