Skip to content
Snippets Groups Projects
Unverified Commit 6656a594 authored by syuilo's avatar syuilo
Browse files

Fix error

parent 7612ead5
No related branches found
No related tags found
No related merge requests found
......@@ -119,6 +119,11 @@ export default define(meta, (ps, user) => new Promise(async (res, rej) => {
getHideUserIds(user)
]);
if (list == null) {
rej('list not found');
return;
}
if (list.userIds.length == 0) {
res([]);
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment