1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

Let the caller do the awaiting

Local useLists() no longer returns a reference to
internal snfe instance.
This commit is contained in:
Raymond Hill 2021-08-19 07:34:02 -04:00
parent 19160f9018
commit 02a17af810
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -221,8 +221,8 @@ class StaticNetFilteringEngine {
snfeProxyInstance = this; snfeProxyInstance = this;
} }
async useLists(lists) { useLists(lists) {
await useLists(lists); return useLists(lists);
} }
matchRequest(details) { matchRequest(details) {