Skip to content

Commit 5d14cc2

Browse files
committed
Fix semicolon
1 parent e716fb0 commit 5d14cc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/endpoints/reporting/lens.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ router.post('/', async function (req, res, next) {
2424
if (unlock && unlock[0]) {
2525
if (unlock[0].lens_id && unlock[0].lens_url) {
2626
console.log('Re-downloading Unlock', lensId);
27-
await Util.downloadUnlock(unlock[0].lens_id, unlock[0].lens_url)
27+
await Util.downloadUnlock(unlock[0].lens_id, unlock[0].lens_url);
2828
return res.json({});
2929
} else {
3030
console.warn('Unlock Download URL is missing', lensId);

0 commit comments

Comments
 (0)