feat(assist): try a different local call

This commit is contained in:
Alexander 2025-03-20 17:09:43 +01:00
parent b72839f89f
commit c5bc804990

View file

@ -70,7 +70,7 @@ const fetchSockets = async function (roomID) {
}
try {
if (useStickySessions) {
return await io.in(roomID).local().fetchSockets();
return await io.local.in(roomID).fetchSockets();
} else {
return await io.in(roomID).fetchSockets();
}