Hi there,
I made some few timer functions:
timer.safeCancel = function(timerID) if timerID ~= nil then timer.cancel(timerID) end return nil end timer.safePause = function(timerID) if timerID then return timer.pause(timerID) end end timer.safeResume = function(timerID) if timerID then return timer.resume(timerID) end end timer.safePauseResume = function(timerID, isPause) if isPause then return timer.safePause(timerID) else return timer.safeResume(timerID) end end
It worked as expected, but now I’m pausing a timer through my “safePauseResume” and the timer ends up calling the callback
I’ve the build version 2014.2161, and this bug appeared some days ago. I was wondering if somebody else had the same problem…