Skip to content
This repository has been archived by the owner on Nov 24, 2022. It is now read-only.

Fix for issue33: unresponsive script #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spahql.js
Original file line number Diff line number Diff line change
Expand Up @@ -2836,7 +2836,7 @@ SpahQL_classExtend("SpahQL.Token.FilterQuery", SpahQL.Token.Simple, {
var scopeDepth=1;
var queryToken="";
var strReadAheadResult;
while(scopeDepth>0) {
while(scopeDepth>0 && j < query.length) {
var ch=query.charAt(j); var strReadResult;
if(ch == this.ATOM_FILTER_QUERY_START) {
scopeDepth++; queryToken += ch; j++;
Expand Down