You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got incorrect set stats info that the number of notes reviewed in last 7 & 30 days are zero. I think it might be related to the type of property "reviewed" because that is the only thing I changed. The language of my operating system is chinese and the default type of "reviewed" in my computer is text. I prefer date type so I made the change.
Anyway, it is just my guess and I do find the plugin very useful for reviewing notes, so I hope it can be fixed soon :)
The text was updated successfully, but these errors were encountered:
@Ciacconinia sometimes stats are resetting; can you try to hit "refresh" button on the sidebar (the 🔃) the next time you encounter the bug, and see if that helps?
@Ciacconinia sometimes stats are resetting; can you try to hit "refresh" button on the sidebar (the 🔃) the next time you encounter the bug, and see if that helps?
Thanks. I tried to hit the "refresh" button but it didn't help. By the way, I found that the field value of "reviewed" in my notes is like "2023年-01月-01日". If I manually changed it to "2023-01-01", the set info becomes correct. So, I changed the code in the function getTodayAsYyyyMmDd in main.js, e.g., from 'const year = date.toLocaleString("default", { year: "numeric" });' to 'const year = date.toLocaleString("en", { year: "numeric" });', and it works.
So, I guess the issue is more related to the string format of the field value of the property "reviewed". My current solution is not that smart and perhaps the issue can be fixed.
I got incorrect set stats info that the number of notes reviewed in last 7 & 30 days are zero. I think it might be related to the type of property "reviewed" because that is the only thing I changed. The language of my operating system is chinese and the default type of "reviewed" in my computer is text. I prefer date type so I made the change.
Anyway, it is just my guess and I do find the plugin very useful for reviewing notes, so I hope it can be fixed soon :)
The text was updated successfully, but these errors were encountered: