Toast-Swift icon indicating copy to clipboard operation
Toast-Swift copied to clipboard

Crash when clicking on toast quickly

Open akirmse opened this issue 9 years ago • 0 comments

I found a crash when you click on the toast quickly after it appears. To fix it I changed this

    let timer = objc_getAssociatedObject(self, &HRToastTimer) as! NSTimer {

to this

    if let timer = objc_getAssociatedObject(self, &HRToastTimer) as? NSTimer {

akirmse avatar Apr 17 '16 18:04 akirmse