mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-13 17:52:22 +00:00
fix(bug-report): relevant change from #13922
This commit is contained in:
parent
2181ab9713
commit
e17b86a1f6
1 changed files with 2 additions and 2 deletions
|
|
@ -10,8 +10,8 @@ export async function bugReportLogic (
|
|||
USER_USERNAME: user.auth.local.username,
|
||||
USER_LEVEL: user.stats.lvl,
|
||||
USER_CLASS: user.stats.class,
|
||||
USER_DAILIES_PAUSED: user.preferences.sleep === 1 ? 'true' : 'false',
|
||||
USER_COSTUME: user.preferences.costume === 1 ? 'true' : 'false',
|
||||
USER_DAILIES_PAUSED: user.preferences.sleep ? 'true' : 'false',
|
||||
USER_COSTUME: user.preferences.costume ? 'true' : 'false',
|
||||
USER_CUSTOM_DAY: user.preferences.dayStart,
|
||||
USER_TIMEZONE_OFFSET: user.preferences.timezoneOffset,
|
||||
USER_SUBSCRIPTION: user.purchased.plan.planId,
|
||||
|
|
|
|||
Loading…
Reference in a new issue