diff options
author | Chocobozzz <me@florianbigard.com> | 2022-06-01 08:25:41 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-06-01 08:25:41 +0200 |
commit | 8a2166c9bfa452ce707740d99c64d668cd7cedce (patch) | |
tree | 57a2279a8bfad101ab54f6461f52876dc2fb53db | |
parent | c6f8ca4d6596572de981162983bd02eb2613791d (diff) | |
download | PeerTube-8a2166c9bfa452ce707740d99c64d668cd7cedce.tar.gz PeerTube-8a2166c9bfa452ce707740d99c64d668cd7cedce.tar.zst PeerTube-8a2166c9bfa452ce707740d99c64d668cd7cedce.zip |
Fix typo
-rw-r--r-- | client/src/app/shared/shared-forms/reactive-file.component.ts | 2 |
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 |