When I send it through, I create a new friend, reset the inputs and then ideally navigate them to the page with the room code. I’ve tried two different ways, both navigating and sending the data through via the key, and this method in the screenshot, as if its an external website, with the code=[input Room Code’s Value]. It doesn’t like this, and sends a code=[object%20Object] in the URL instead.
I’m wondering if this is due to the formatting of the number code, but trying to reformat it has not worked so far.
If anyone has any ideas on this, I’d love to know! Ideally the player types the room code and name, and joins the same room as the other players that may have joined directly via URL.
In step 2 of your workflow you’re setting the ‘code’ URL parameter to the the value of the ‘Room Code Input’
But in step 1 you’re resetting that input.
So in step 2, the input is empty (it’s been reset in step 1), but Bubble is still trying to set the value, and instead ends up setting the value as ‘object%20Object’.
So just remove the ‘Reset Relevant Inputs’ step in the workflow to ensure that the reference to the input in step 2 has a value to apply (there’s no need to use that action here as you’re leaving the page).