{BUGFIX} On share my collection

This commit is contained in:
Damien Broqua 2024-01-28 17:17:07 +01:00
parent 71c120564a
commit 041e24e26f
2 changed files with 12 additions and 0 deletions

View file

@ -43,6 +43,10 @@ class Me extends Pages {
user.salt = value.password;
}
if (value.isPublicCollection !== undefined) {
user.isPublicCollection = value.isPublicCollection;
}
user.save();
await new Promise((resolve, reject) => {