Thank you. I’m not really relying on URLs currently. The main problem is, when I do nav.push from the callback of a modal window the URL gets all messed up, then let’s say I change something in my code, the live update automatically tries to refresh the page so the new code is there. The problem is the url is no longer “http://localhost:3000”, it is “http://localhost:3000/#/tabs/t0/chat/channel-chat” so the application fails because that page needs information sent to it, which it gets from the nav.push(page, data); call. I am worried that if I try to actually push a mobile version of the app, to say Android, if someone goes in and starts doing normal chat, I don’t know what will happen because for whatever reason that nav.push screws up the URL. I will see if I can find anything in the changelog, but I was hoping someone could tell me why the nav.push is destroying the URL, but only when called from a modal.onDidDismiss. That way I don’t run in to any troub;e down the line. Like if someone is in private chat, then exits the app (on mobile) when they open the app again, is it going to try to go to that messed up URL that, or will it actually work correctly. It is all just confusing, I just don’t understand why nav.push breaks the URL, only in the context of a modal callback.