Skip to content

Commit

Permalink
[Fix] Workspaces not loading if there are no users associated with di…
Browse files Browse the repository at this point in the history
…agrams
  • Loading branch information
bindeali committed Jan 8, 2024
1 parent 5e2208a commit 8a01daa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/queries/get/FetchQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ export async function fetchTerms(
}

export async function fetchUsers(...ids: string[]): Promise<boolean> {
if (ids.length === 0) return false;
if (ids.length === 0) return true;
const query = [
`PREFIX a-popis-dat-pojem: ${qb.i(Prefixes["a-popis-dat-pojem"])}`,
"select ?id ?first ?last ?graph where {",
Expand Down

0 comments on commit 8a01daa

Please sign in to comment.