Skip to content
This repository has been archived by the owner on May 26, 2023. It is now read-only.

Commit

Permalink
Fix queries list parsed incorrectly for Java client (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
feedmeapples authored Jul 9, 2020
1 parent a615d31 commit 8021dd5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions server/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ router.get(
ctx.body = ((e.message || '').match(
/(KnownQueryTypes|knownTypes)=\[(.*)\]/
) || [null, null, ''])[2]
.replace(',', '')
.split(' ')
.filter((q) => q);
}
Expand Down

0 comments on commit 8021dd5

Please sign in to comment.