]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix typo
authorChocobozzz <me@florianbigard.com>
Wed, 1 Jun 2022 06:25:41 +0000 (08:25 +0200)
committerChocobozzz <me@florianbigard.com>
Wed, 1 Jun 2022 06:25:41 +0000 (08:25 +0200)
client/src/app/shared/shared-forms/reactive-file.component.ts

index 50b7d4c3e797f2261c008e021947eb5337f2d327..48055a51cdeb240cb3445ac5d87098ee923498fc 100644 (file)
@@ -57,7 +57,7 @@ export class ReactiveFileComponent implements OnInit, ControlValueAccessor {
 
       const extension = '.' + file.name.split('.').pop()
       if (this.extensions.includes(extension.toLowerCase()) === false) {
-        const message = $localize`PeerTube cannot handle this kind of file. Accepted extensions are ${this.allowedExtensionsMessage}}.`
+        const message = $localize`PeerTube cannot handle this kind of file. Accepted extensions are ${this.allowedExtensionsMessage}.`
         this.notifier.error(message)
 
         return