[mv3] Add support for regexSubstitution from uritransform

Related commit:
aaf35d9d71
This commit is contained in:
Raymond Hill 2025-08-16 15:36:52 -04:00
parent b7b5d926f0
commit fad0af591f
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -297,6 +297,7 @@ const isRedirect = rule => {
if ( rule.action.type !== 'redirect' ) { return false; }
if ( rule.action.redirect?.extensionPath !== undefined ) { return true; }
if ( rule.action.redirect?.transform?.path !== undefined ) { return true; }
if ( rule.action.redirect?.regexSubstitution !== undefined ) { return true; }
return false;
};