From 01ba4668b6d26365a96fde1b75fc9be77666181c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sun, 8 Oct 2023 22:01:47 +0800 Subject: [PATCH] platform: Also reset connections on wake --- experimental/libbox/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/experimental/libbox/service.go b/experimental/libbox/service.go index 6c98c179..c8fef13e 100644 --- a/experimental/libbox/service.go +++ b/experimental/libbox/service.go @@ -80,6 +80,7 @@ func (s *BoxService) Sleep() { func (s *BoxService) Wake() { s.pauseManager.DeviceWake() + _ = s.instance.Router().ResetNetwork() } var _ platform.Interface = (*platformInterfaceWrapper)(nil)