mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
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
Block a user