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
An error in the help functions leads to the deletion of the Webuntis object tree.
The functions deleteOldInboxObject and deleteOldNewsFeedObject do not delete individual objects from Inbox or News, but rather a large part of the Webuntis object tree.
An error in the help functions leads to the deletion of the Webuntis object tree.
The functions deleteOldInboxObject and deleteOldNewsFeedObject do not delete individual objects from Inbox or News, but rather a large part of the Webuntis object tree.
deleteOldInboxObject
await this.delObjectAsync(index.toString(), { recursive: true });
replace with
await this.delObjectAsync('inbox.' + index.toString(), { recursive: true });
deleteOldNewsFeedObject
await this.delObjectAsync(index.toString(), { recursive: true });
replace with
await this.delObjectAsync('newsfeed.' + index.toString(), { recursive: true });
The text was updated successfully, but these errors were encountered: