Fix undefined function call in deconstructor

This commit is contained in:
2024-04-28 18:49:29 +02:00
parent afd3f16181
commit e352f9ff87

View File

@@ -22,7 +22,7 @@ export const stats = readable(
results,
(set) => {
start_sock(set)
return stop_sock
return () => stop_sock(set)
},
);