fix user study open again

This commit is contained in:
otsmr 2026-01-24 20:12:55 +01:00
parent 1e0a649e5a
commit a029d2f4d5

View file

@ -51,7 +51,9 @@ class _UserStudyQuestionnaireState extends State<UserStudyQuestionnaire> {
await updateUserdata((u) { await updateUserdata((u) {
// generate a random participants id to identify data send later while keeping the user anonym // generate a random participants id to identify data send later while keeping the user anonym
u.userStudyParticipantsToken = getRandomString(25); u
..userStudyParticipantsToken = getRandomString(25)
..askedForUserStudyPermission = true;
return u; return u;
}); });