1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-11-25 08:59:31 -05:00

Fix missed change to GetManager() (#9361)

This commit is contained in:
zeripath 2019-12-15 13:15:17 +00:00 committed by GitHub
parent 3abe17f9e0
commit 7cc16740a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ import "net"
// On windows this is basically just a shim around net.Listen.
func GetListener(network, address string) (net.Listener, error) {
// Add a deferral to say that we've tried to grab a listener
defer Manager.InformCleanup()
defer GetManager().InformCleanup()
return net.Listen(network, address)
}