From abde556695a2a16d1a8f05b5034f3420b55aba0b Mon Sep 17 00:00:00 2001 From: fufesou <13586388+fufesou@users.noreply.github.com> Date: Mon, 28 Apr 2025 21:48:14 +0800 Subject: [PATCH] fix: lan discovery (#11592) Signed-off-by: fufesou --- flutter/lib/common/widgets/peers_view.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/flutter/lib/common/widgets/peers_view.dart b/flutter/lib/common/widgets/peers_view.dart index 842374a66..94f4af035 100644 --- a/flutter/lib/common/widgets/peers_view.dart +++ b/flutter/lib/common/widgets/peers_view.dart @@ -501,6 +501,7 @@ class DiscoveredPeersView extends BasePeersView { Widget build(BuildContext context) { final widget = super.build(context); bind.mainLoadLanPeers(); + bind.mainDiscover(); return widget; } }