projects
/
oweals
/
peertube.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dae5ca2
)
Overwrite video caption
author
Chocobozzz
<me@florianbigard.com>
Tue, 11 Dec 2018 14:56:35 +0000
(15:56 +0100)
committer
Chocobozzz
<me@florianbigard.com>
Tue, 11 Dec 2018 14:56:35 +0000
(15:56 +0100)
server/helpers/captions-utils.ts
patch
|
blob
|
history
diff --git
a/server/helpers/captions-utils.ts
b/server/helpers/captions-utils.ts
index 1aafbf8056abd79b9cd3ab3a9f4eee191ac6a560..0fb11a1251a694116c6feceff681399f7f33bf17 100644
(file)
--- a/
server/helpers/captions-utils.ts
+++ b/
server/helpers/captions-utils.ts
@@
-13,7
+13,7
@@
async function moveAndProcessCaptionFile (physicalFile: { filename: string, path
await convertSrtToVtt(physicalFile.path, destination)
await remove(physicalFile.path)
} else { // Just move the vtt file
- await move(physicalFile.path, destination)
+ await move(physicalFile.path, destination
, { overwrite: true }
)
}
// This is important in case if there is another attempt in the retry process