File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 13
13
},
14
14
"name" : " @slackbyte/odata-query-parser" ,
15
15
"description" : " A highly versatile and fast OData Version 4.01 Parser." ,
16
- "version" : " 0.0.3 " ,
16
+ "version" : " 0.0.4 " ,
17
17
"main" : " dist/index.js" ,
18
18
"types" : " dist/index.d.ts" ,
19
19
"files" : [ " dist" ],
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class OdataQueryParser {
78
78
continue ;
79
79
}
80
80
const trimTillSpaceStr = tillSpaceStr . trim ( ) ;
81
- if ( operatorLexer [ trimTillSpaceStr ] && operatorLexer [ trimTillSpaceStr ] ( ) . subType === 'notExp' && ( this . prevLexerSubType === 'orExp' || this . prevLexerSubType === 'andExp' ) ) {
81
+ if ( operatorLexer [ trimTillSpaceStr ] && operatorLexer [ trimTillSpaceStr ] ( ) . subType === 'notExp' ) {
82
82
// This is a valid condition for NOT expression to be in the string;
83
83
const token : IOdataFilterToken = operatorLexer [ trimTillSpaceStr ] ( ) ;
84
84
this . appendToFilterToken ( token ) ;
You can’t perform that action at this time.
0 commit comments