Skip to content

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed Sep 9, 2020
1 parent b238278 commit d4280b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion extension/experiments/remotesettings/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ var remotesettings = class extends ExtensionAPI {
// Generate a fake timestamp to bust cache.
const randomCacheBust = 99990000 + Math.floor(Math.random() * 9999);
try {
await RemoteSettings.pollChanges({ expectedTimestamp: randomCacheBust });
await RemoteSettings.pollChanges({
expectedTimestamp: randomCacheBust,
});
refreshUI();
} catch (e) {
reportError(e);
Expand Down

0 comments on commit d4280b7

Please sign in to comment.