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
Your daily session count is stored in volatile storage here, which means that it isn't saved in the panoptes-user snapshot when you leave the Classify page. As a result, it starts again from 0 each time that you return.
One subtle side effect of this bug is that sessionCount % 5 will always be 0 here, meaning that you'll be nagged about workflow promotion on every subject, if you classify using Done & Talk rather than Done.
sessionCount is also used to calculate your total classification count here, leading to the impression that classifications have been lost when the volatile state resets to 0.
Also worth noting that sessionCount increments from zero as long as a tab is open, so isn’t a daily count either. Fixed in #5082 by counting daily classifications separately from classifications for the current browser session.
front-end-monorepo/packages/app-project/stores/User/UserPersonalization/UserPersonalization.js
Lines 15 to 17 in 2092b81
Your daily session count is stored in volatile storage here, which means that it isn't saved in the
panoptes-user
snapshot when you leave the Classify page. As a result, it starts again from 0 each time that you return.One subtle side effect of this bug is that
sessionCount % 5
will always be 0 here, meaning that you'll be nagged about workflow promotion on every subject, if you classify using Done & Talk rather than Done.front-end-monorepo/packages/app-project/stores/User/UserPersonalization/UserPersonalization.js
Lines 38 to 40 in 2092b81
sessionCount
is also used to calculate your total classification count here, leading to the impression that classifications have been lost when the volatile state resets to 0.front-end-monorepo/packages/app-project/stores/User/UserPersonalization/UserPersonalization.js
Lines 42 to 45 in 2092b81
The text was updated successfully, but these errors were encountered: