Skip to content
This repository has been archived by the owner on Feb 29, 2020. It is now read-only.

Commit

Permalink
lint (metadatastore): fix some lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rlr committed Nov 1, 2016
1 parent ee1d647 commit 82b3592
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions addon/MetadataStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -462,10 +462,10 @@ MetadataStore.prototype = {
JOIN page_metadata_images AS pmi ON pm.id = pmi.metadata_id
JOIN page_images AS pi ON pi.id = pmi.image_id
WHERE pm.id = :metaobject_id`,
{
params: {metaobject_id: metaObject.id},
columns: ["url", "type", "height", "width", "color"]
}
{
params: {metaobject_id: metaObject.id},
columns: ["url", "type", "height", "width", "color"]
}
);
} catch (e) {
Cu.reportError("Failed to fetch metadata by cacheKey: ${e.message}");
Expand Down

0 comments on commit 82b3592

Please sign in to comment.