]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix error messages
authorChocobozzz <me@florianbigard.com>
Fri, 23 Sep 2022 12:41:14 +0000 (14:41 +0200)
committerChocobozzz <me@florianbigard.com>
Fri, 23 Sep 2022 12:41:14 +0000 (14:41 +0200)
client/src/app/+search/search.component.ts
client/src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts
client/src/app/core/auth/auth.service.ts

index 62b1c4446b0abb9f3deb8d72244a427d689159ac..366fbd459906b293f085fabb2cbb533b3ae41543 100644 (file)
@@ -98,7 +98,7 @@ export class SearchComponent implements OnInit, OnDestroy {
           this.search()
         },
 
-        error: err => this.notifier.error(err.text)
+        error: err => this.notifier.error(err.message)
       })
 
     this.userService.getAnonymousOrLoggedUser()
index fd36142974024cd1ef81efa5e99d83ef36e1f64b..9f4a68736b768bc1631794ded4c207e777a0d03c 100644 (file)
@@ -148,7 +148,7 @@ export class VideoCommentAddComponent extends FormReactive implements OnChanges,
       error: err => {
         this.addingComment = false
 
-        this.notifier.error(err.text)
+        this.notifier.error(err.message)
       }
     })
   }
index ece6bc5d168333d10cd91ed397ec1fc033d52304..ca46866f56ee59b31cf63467bbd11501c3ce9502 100644 (file)
@@ -97,7 +97,7 @@ export class AuthService {
             let errorMessage = err.message
 
             if (err.status === HttpStatusCode.FORBIDDEN_403) {
-              errorMessage = $localize`Cannot retrieve OAuth Client credentials: ${err.text}.
+              errorMessage = $localize`Cannot retrieve OAuth Client credentials: ${err.message}.
 Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.`
             }