Skip to content

Commit 465fbf7

Browse files
committed
Remove extra semicolon
1 parent b994fb5 commit 465fbf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/router.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ module.exports = function (source) {
158158
_embed.forEach(function (otherResource) {
159159
if (otherResource && otherResource.trim().length > 0) {
160160
// Skip non-existent collections
161-
if (!db.object[otherResource]) return;
161+
if (!db.object[otherResource]) return
162162
var query = {}
163163
query[req.params.resource + 'Id'] = req.params.id
164164
resource[otherResource] = db(otherResource).where(query)

0 commit comments

Comments
 (0)