OnRoomsListUpdate() is not being called.,OnRoomsListUpdate not being called

I’m making a photon game, and I have a script that shows all rooms, but no matter what , OnRoomsListUpdate() is not being called when I create room on other build. Code:

public override void OnRoomListUpdate(List<RoomInfo> roomList)
    {
        print("update");
        
        foreach (RoomInfo info in roomList)
        {
         print(info.Name);
        }
    }

( Sorry for my english. It’s not my main language :slight_smile: )

@piotrkier06 Did you find a solution to the problem.? I have the same problem