1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 10:09:38 +02:00

Clear network error status when list fetch succeed

This commit is contained in:
Raymond Hill 2023-03-30 12:28:02 -04:00
parent cee3c4822d
commit 08d411a7b4
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -805,6 +805,7 @@ assets.get = async function(assetKey, options = {}) {
url: contentURL,
silent: options.silent === true,
});
registerAssetSource(assetKey, { error: undefined });
}
return reportBack(details.content, contentURL);
}