[mv3] Temporarily comment out empty list as error

This commit is contained in:
Raymond Hill 2025-07-28 10:00:25 -04:00
parent 581144eeb8
commit 4f273c4284
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -263,7 +263,7 @@ async function fetchList(assetDetails) {
const { url, error } = details;
if ( error !== undefined ) { return details; }
const content = details.content.trim();
if ( content === '' || /^<.*>$/.test(content) ) {
if ( /* content === '' || */ /^<.*>$/.test(content) ) {
return { url, error: `Bad content: ${url}` };
}
return { url, content };