forked from 0x2620/pandora
only cleanup if needed
This commit is contained in:
parent
4733dc8994
commit
ed7a56a5e9
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ class Document(models.Model):
|
||||||
elif ktype == 'text':
|
elif ktype == 'text':
|
||||||
if data[key]:
|
if data[key]:
|
||||||
self.data[key] = ox.sanitize_html(data[key])
|
self.data[key] = ox.sanitize_html(data[key])
|
||||||
else:
|
elif key in self.data:
|
||||||
del self.data[key]
|
del self.data[key]
|
||||||
elif ktype == '[text]':
|
elif ktype == '[text]':
|
||||||
self.data[key] = [ox.sanitize_html(t) for t in data[key]]
|
self.data[key] = [ox.sanitize_html(t) for t in data[key]]
|
||||||
|
|
Loading…
Reference in a new issue