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
|
||||
parent = img
|
||||
while parent = parent.parent
|
||||
if parent["class"].include? "whitelistedgeneric"
|
||||
if parent["class"] && parent["class"].include?("whitelistedgeneric")
|
||||
found = true
|
||||
break
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue