Quick recap: My new web-based game is running on most computers and mobile devices, but two of my Beta testers reported that the game isn't running on their iPhones. (One is an SE, I'm not sure about the other one.)
I've been extensively testing the game with my iPhone SE tester and I think I have figured out the problem -- though I have no idea why it is happening.
MY COMPUTER:
Date.ToLocaleDateString(Date.Now) = 7/20/2023
TESTER'S COMPUTER:
Date.ToLocaleDateString(Date.Now) = 20/7/2023
The dates in the array are in this format: 7/20/2023. So this code may not be functioning properly:
Basically, I'm iterating through the array looking for "7/20/2023" but I'm finding "20/7/2023". How do I make sure that ALL phones are using the correct date format?
NOTE: Hmm. Looking at my message above the problem seems sort of obvious. I am using "locale" date string. I tried using "date string" but that didn't seem to be working the way I thought. Guess I need to try it again.