diff options
| author | surbiks <43953720+surbiks@users.noreply.github.com> | 2026-02-09 23:43:17 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-09 23:43:17 +0300 |
| commit | 4779939424eb047d30161631fd89a9876104084c (patch) | |
| tree | 89e2682aa528281879b3afb535f2b34124a17335 /web/websocket | |
| parent | 4a455aa5322e0803005da2d5d65b85a19dfc42e5 (diff) | |
Add url speed test for outbound (#3767)
* add outbound testing functionality with configurable test URL
* use no kernel tun for conflict errors
Diffstat (limited to 'web/websocket')
| -rw-r--r-- | web/websocket/notifier.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/websocket/notifier.go b/web/websocket/notifier.go index 91e52c7c..74cf61b2 100644 --- a/web/websocket/notifier.go +++ b/web/websocket/notifier.go @@ -49,7 +49,7 @@ func BroadcastInbounds(inbounds any) { } // BroadcastOutbounds broadcasts outbounds list update to all connected clients -func BroadcastOutbounds(outbounds interface{}) { +func BroadcastOutbounds(outbounds any) { hub := GetHub() if hub != nil { hub.Broadcast(MessageTypeOutbounds, outbounds) |
