mirror of https://github.com/Chocobozzz/PeerTube
Add error message when trying to upload .ass subtitles
parent
744d0eca19
commit
b5487ff4a5
|
@ -53,6 +53,17 @@ export class ReactiveFileComponent implements OnInit, ControlValueAccessor {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const extension = '.' + file.name.split('.').pop()
|
||||||
|
if (this.extensions.includes(extension) === false) {
|
||||||
|
const message = this.i18n(
|
||||||
|
'PeerTube cannot handle this kind of file. Accepted extensions are {{extensions}}.',
|
||||||
|
{ extensions: this.allowedExtensionsMessage }
|
||||||
|
)
|
||||||
|
this.notifier.error(message)
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
this.file = file
|
this.file = file
|
||||||
|
|
||||||
this.propagateChange(this.file)
|
this.propagateChange(this.file)
|
||||||
|
|
Loading…
Reference in New Issue