Skip to content

Commit 549b1b1

Browse files
committed
Fix compil error
1 parent dc23575 commit 549b1b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

www/plugins/map/js/services/wot-services.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)