[AltDaemon] Adds explicit autoreleasepool to main.swift

This commit is contained in:
Riley Testut
2020-06-05 14:13:09 -07:00
parent 496aca642c
commit fafec6c904

View File

@@ -8,5 +8,7 @@
import Foundation
ConnectionManager.shared.start()
RunLoop.current.run()
autoreleasepool {
ConnectionManager.shared.start()
RunLoop.current.run()
}