Per-Olov Jernberg
Per-Olov Jernberg
That's my suspicion too, as always with almoste every os/hardware refresh, new inventions that just turns into annoyances :) don't spend too much time on it though, it's a minor...
Not sure, it seems like it, i guess i could try that by just writing the two lowest bits as zero and see what it returns, i'll do some more...
As usual, adding a little delay solves the problem, at least for me... ``` function handleOpenURL(url) { setTimeout(function() { actuallyHandleOpenURL(url); }, 500); } function actuallyHandleOpenURL(url) { ... } ``` (i'm...