1
0
Fork 0

Fix error messages

This commit is contained in:
Chocobozzz 2022-09-23 14:41:14 +02:00
parent b2a70e3ca2
commit 255c00305c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 3 additions and 3 deletions

View 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()

View 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)
}
})
}

View 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.`
}