aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-06-01 08:25:41 +0200
committerChocobozzz <me@florianbigard.com>2022-06-01 08:25:41 +0200
commit8a2166c9bfa452ce707740d99c64d668cd7cedce (patch)
tree57a2279a8bfad101ab54f6461f52876dc2fb53db
parentc6f8ca4d6596572de981162983bd02eb2613791d (diff)
downloadPeerTube-8a2166c9bfa452ce707740d99c64d668cd7cedce.tar.gz
PeerTube-8a2166c9bfa452ce707740d99c64d668cd7cedce.tar.zst
PeerTube-8a2166c9bfa452ce707740d99c64d668cd7cedce.zip
Fix typo
-rw-r--r--client/src/app/shared/shared-forms/reactive-file.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-forms/reactive-file.component.ts b/client/src/app/shared/shared-forms/reactive-file.component.ts
index 50b7d4c3e..48055a51c 100644
--- a/client/src/app/shared/shared-forms/reactive-file.component.ts
+++ b/client/src/app/shared/shared-forms/reactive-file.component.ts
@@ -57,7 +57,7 @@ export class ReactiveFileComponent implements OnInit, ControlValueAccessor {
57 57
58 const extension = '.' + file.name.split('.').pop() 58 const extension = '.' + file.name.split('.').pop()
59 if (this.extensions.includes(extension.toLowerCase()) === false) { 59 if (this.extensions.includes(extension.toLowerCase()) === false) {
60 const message = $localize`PeerTube cannot handle this kind of file. Accepted extensions are ${this.allowedExtensionsMessage}}.` 60 const message = $localize`PeerTube cannot handle this kind of file. Accepted extensions are ${this.allowedExtensionsMessage}.`
61 this.notifier.error(message) 61 this.notifier.error(message)
62 62
63 return 63 return