always double check there is a class first
This commit is contained in:
parent
dfe9f70747
commit
ed0751f288
|
@ -336,7 +336,7 @@ class CookedPostProcessor
|
||||||
found = false
|
found = false
|
||||||
parent = img
|
parent = img
|
||||||
while parent = parent.parent
|
while parent = parent.parent
|
||||||
if parent["class"].include? "whitelistedgeneric"
|
if parent["class"] && parent["class"].include?("whitelistedgeneric")
|
||||||
found = true
|
found = true
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue