File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
www/plugins/map/js/services Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ angular.module('cesium.map.wot.services', ['cesium.services'])
153153
154154 return search ( request ) . then ( function ( res ) {
155155 if ( ! res . hits || ! res . hits . hits . length ) return result ;
156- result . hits . total = res . hits . total
156+ result . hits . total = res . hits . total ;
157157 result . hits . hits = result . hits . hits . concat ( res . hits . hits ) ;
158158 if ( result . hits . hits . length < result . hits . total ) {
159159 request . from += request . size ;
@@ -164,8 +164,8 @@ angular.module('cesium.map.wot.services', ['cesium.services'])
164164 return searchRecursive ( request , result ) ;
165165 }
166166 return result ;
167- } )
168- }
167+ } ) ;
168+ } ;
169169 var processRequestResultFn = function ( subRes ) {
170170 if ( ! subRes . hits || ! subRes . hits . hits . length ) return [ ] ;
171171 return processLoadHits ( options , uids , memberships , subRes ) ;
You can’t perform that action at this time.
0 commit comments