Guess progress lost if visited Codle during UTC 2022-04-05 15:55 ~ 2022-04-06 06:25 #3
ouuan
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Am I affected?
Otherwise, it's likely that your game progress was lost, and unfortunately, it's not possible to recover the progress.
If you didn't solve Codle
#1
, the progress lost would be the only impact. Otherwise, you can read the following sections.What happended?
In c9acf27, the
statementEncoded
localStorage was replaced withstatement
, before whichstatement
was a computed value based onstatementEncoded
. Due to the following condition check, the game progress, including guess history and puzzle-finished state, was accidentally cleared:codle/src/store/useLocalStorage.ts
Line 136 in c9acf27
This was fixed in cfac988. However, if you visited Codle during UTC 2022-04-05 15:55 ~ 2022-04-06 06:25, the progress would have been lost, and the game statistics could also be incorrect if you had solved the puzzle before.
What should I do?
I'm really sorry for the inconvenience. It's possible to detect inconsistent data and warn the player, however, unfortunately, it's not possible the recover the lost data.
Data inconsistency should occur only if you have solved the puzzle before and visited Codle during the duration mentioned above. If you haven't solved the puzzle twice, you can simply prevent solving it again in the remaining days of this week, or follow the instructions to set
localStorage.codle_finished
totrue
. If your analytics data seems inconsistent, please manually fix it via the developer tool:localStorage.codle_xxx
to access the saved data. For example, you can uselocalStorage.codle_successCount
to get the number of successes, or uselocalStorage.codle_finished = true
to set the finished state.successCount
,currentStreak
,maxStreak
andguessSum
:localStorage.codle_successCount = localStorage.codle_currentStreak = localStorage.maxStreak = 1
,localStorage.codle_guessSum = xxx
.Beta Was this translation helpful? Give feedback.
All reactions