After a new update today I see the webviews just show white. I specifically think it is any web that we post data or receive messages. Competely broken and we cannot use our apps for our customers. This is exactly like the last time when the update happened and it took 12 days to resolve the laggy screens and broken thunkable live app. Really really poor from Thunkables side. Please provide us detail urgently
I am having the same issue - @ioannis is there a fix/workaround for this?
Hi @grant.mccallum
We have changed only 1 thing, and it was a needed bugfix - when we post a message through the web viewer, previously, we were sending whatever type the user has chosen - e.g., if you send the number “1”, we’re sending 1 as a number. Now, we are stringifying everything, meaning that if you send “1”, it’ll be 1 as a string and not as a number. This means that, whoever is receiving or consuming the message, should handle it accordingly.
In the case of “1”, it’s “simple”. But if the user decides to send a whole object (e.g., { name: 'John Doe', age: 20 }, then this will be send/received as a string and the receiver must cast/parse it to an object and then they can use it as such
Could you please let me know if you have more questions?