5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-20 02:32:32 +00:00

Merge pull request #628 from armatusmiles/develop

Fix return value in Multicast.Stop()
This commit is contained in:
Neil Alexander 2019-12-02 21:21:23 +00:00 committed by GitHub
commit fdecf8dbd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,7 +112,7 @@ func (m *Multicast) Stop() error {
err = m._stop()
})
m.log.Debugln("Stopped multicast module")
return nil
return err
}
func (m *Multicast) _stop() error {