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
{{ message }}
This repository was archived by the owner on Jun 28, 2022. It is now read-only.
The getAll function in posts.js has a bug that causes deleted posts to not be filtered out. On line 60 there is the following let filtered_keys = keys.filter(key => !posts.deleted) but that should be let filtered_keys = keys.filter(key => !posts[key].deleted)
The text was updated successfully, but these errors were encountered:
The getAll function in posts.js has a bug that causes deleted posts to not be filtered out. On line 60 there is the following
let filtered_keys = keys.filter(key => !posts.deleted)
but that should belet filtered_keys = keys.filter(key => !posts[key].deleted)
The text was updated successfully, but these errors were encountered: