Nguyen Anh Tu
Nguyen Anh Tu
@platonish i haven't tried out @cmendes0101 's fork but since it's a hack, seems like it still has some problems like @iBuntaah is having with resume side https://github.com/datso/react-native-pjsip/issues/152#issuecomment-449344553
I'm also facing same issue (npm version).
@levity i set the global methods like your example but still get the error , do you have any idea ? 😓
Got it solved by checking ms value ```javascript setTimeout = (fn, ms = 0) => { const numberMs = Number(ms) if (isNaN(numberMs)) return BackgroundTimer.setTimeout(fn, 0) return BackgroundTimer.setTimeout(fn, numberMs) } setInterval...