forked from 0x2620/pandora
add <br> to subtitles on import
This commit is contained in:
parent
2f914f16d6
commit
d9ac05245b
1 changed files with 2 additions and 1 deletions
|
@ -1226,12 +1226,13 @@ class Item(models.Model):
|
|||
s = q[0]
|
||||
for data in s.srt(offset):
|
||||
subtitles_added = True
|
||||
value = data['value'].replace('\n', '<br>\n').replace('<br><br>\n', '<br>\n')
|
||||
annotation = Annotation(
|
||||
item=self,
|
||||
layer=layer,
|
||||
start=data['in'],
|
||||
end=data['out'],
|
||||
value=data['value'],
|
||||
value=value,
|
||||
user=user
|
||||
)
|
||||
annotation.save()
|
||||
|
|
Loading…
Reference in a new issue