mark interface as online

This commit is contained in:
2025-09-27 05:47:28 -05:00
parent b70a7d03af
commit ad732d1465

View File

@@ -97,6 +97,10 @@ func (ai *AutoInterface) Start() error {
return fmt.Errorf("no suitable interfaces found")
}
// Mark interface as online
ai.Online = true
ai.Enabled = true
go ai.peerJobs()
return nil
}