Hi everyone,
My Problem:
I have a Bubble application that updates based on a URL parameter c
using “Get data from page URL”. The first time, the update works perfectly. However, if the user selects another c
value without it becoming empty between selections, the app doesn’t update because the workflow relies on the condition c is not empty
.
Example:
- From the initial URL
https://url.com/?c=youtube-expert
, the app updates correctly. - Switching to
https://url.com/?c=facebook-expert
, the app does not update becausec
never became empty between selections, so the workflow doesn’t detect the change.
How I’m solving it now:
I am using a workaround involving two searches, leading to additional workload usage:
- Add a custom state: to store the data from the
c
parameter. - Add an additional conditional: Besides checking if
c
is not empty, I also verify thatc
is not the same as the value stored in the custom state; this involves an initial search. - Update the custom state: After processing the new value of
c
, I update the custom state with this new value, which involves another search.
Any idea on how to solve this? Thanks in advanced!