main
Bob Mottram 2021-10-26 17:52:17 +01:00
parent 9ce9991cf9
commit a3c9468166
1 changed files with 1 additions and 1 deletions

View File

@ -1203,6 +1203,6 @@ def containsInvalidLocalLinks(content: str) -> bool:
'handle', 'blockdomain'
)
for invStr in invalidStrings:
if '/?' + invStr + '=' in content:
if '?' + invStr + '=' in content:
return True
return False