Skip to content

Commit 16bd111

Browse files
committed
fix: fix onStream check
1 parent 7c4946b commit 16bd111

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/classes/Cortex.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export class Cortex {
9898
const clientMethod = (
9999
isPagination
100100
? this.client.GETPaged
101-
: onStream
101+
: isStream
102102
? this.client.CLIENT[methodUpperCase as 'GET']
103103
: this.client[methodUpperCase]
104104
) as (...args: unknown[]) => Promise<unknown>;

0 commit comments

Comments
 (0)