Skip to content

Commit 767d68b

Browse files
committed
Fix issue #10
1 parent 1009741 commit 767d68b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GrpcReflection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class GrpcReflection {
8686
found = true;
8787
}
8888
anti_recusive++;
89-
}while(anti_recusive < 100 || !found);
89+
}while(anti_recusive < 100 && !found);
9090
if ('service' in actualDescriptor) {
9191
return Object.entries(actualDescriptor.service)
9292
.map(([methodName, methodDefinition]) => ({

0 commit comments

Comments
 (0)