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.
This commit is contained in:
Jay2k1 2025-09-18 20:31:02 +02:00 committed by GitHub
commit 892562902f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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),
});