mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
Fix ESLint warning in useLists() (#3855)
This commit is contained in:
parent
2effd7ba3d
commit
b83e2d4e2b
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ async function useLists(lists, options = {}) {
|
|||
|
||||
useLists.promise = Promise.all(promises);
|
||||
await useLists.promise;
|
||||
useLists.promise = null;
|
||||
useLists.promise = null; // eslint-disable-line require-atomic-updates
|
||||
|
||||
// Commit changes
|
||||
snfe.freeze();
|
||||
|
|
Loading…
Reference in a new issue