I'm using the SaveData() and LoadData() functions to reduce loading times in my app. However, apparently, those functions only work on Studio and on mobile. I have users on those platforms but I also have users who would access the app via a browser. This is problematic since my browser users would see error messages regarding those two functions.
I would like a way to disable error messages when SaveData() and LoadData() is used in platforms where they are not supported. I know that LoadData() has an optional third argument, IgnoreNonexistentFile, but using that apparently does not disable errors on the browser. In any case, I already have a failsafe implemented and the app works well enough on the browser -- it's just that my users would see unnecessary error messages that would produce confusion.
Thanks.