Fixed crashing when forcefully unwrapping running application#85
Fixed crashing when forcefully unwrapping running application#85hahaSK wants to merge 2 commits intotmandry:mainfrom
Conversation
|
This means the application object won't be fully initialized. Can you elaborate on how you're using Swindler? Initialization already happens asynchronously, there's no need to do that explicitly, just use the future returned by initialize(). |
|
When my App starts it initialises Swindler and sets the handlers. Later there is a video playing full screen and while the video is playing windows/apps are positioned if necessary. But some app/s cause swindler to crash at that line of code. When I search for the PID that caused the crash ( |
Hello again 👋,
I used asynchronous execution
DispatchQueue.main.asyncand was getting crashes of forcefully unwrapping of running application so I have removed the unwrapping.Also Swindler is missing the Appkit import.