Skip to content

Commit fa9ea3e

Browse files
forgot to increment depth and pass in
1 parent 2dbc3f3 commit fa9ea3e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/scripts/grpc.service.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ function GrpcSvc(StorageSvc) {
145145
var fields = grpcType._fields.map(function(f){
146146
var t
147147
if (f.resolvedType && depth < 4) {
148-
t = parseResolvedType(f.resolvedType, parsedTypes);
148+
depth++;
149+
t = parseResolvedType(f.resolvedType, depth);
149150
} else {
150151
t = f.type.name;
151152
}

0 commit comments

Comments
 (0)