Changing regions while using SQLLobby

Options
I have a lobby where I can search games, if I just call a function that does this:
PhotonNetwork.GetCustomRoomList(PhotonNetwork.CurrentLobby, query);

the search works and I get my rooms filtered.

If I change the region and wait for the callback to tell me the region has been changed to call the SAME method with the SAME parameters my filters don't apply.

I'm in the same lobby and I simply get a full list, anyone has any idea on what I can do to fix this?

Comments

  • cadonuno
    Options
    Fixed, I was rejoining the lobby and, for some reason, that was making the SQLLobby features not work. I removed a call to the JoinDefaultLobby function I had and it started working.