aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/shared/comment
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-09-23 14:41:14 +0200
committerChocobozzz <me@florianbigard.com>2022-09-23 14:41:14 +0200
commit255c00305c899d8db829b07b49d06cd2fea7ca02 (patch)
tree5f389583d081a5563d859b8793a9e878573c087d /client/src/app/+videos/+video-watch/shared/comment
parentb2a70e3ca2611a8831b6e490cc25dbf3066562c0 (diff)
downloadPeerTube-255c00305c899d8db829b07b49d06cd2fea7ca02.tar.gz
PeerTube-255c00305c899d8db829b07b49d06cd2fea7ca02.tar.zst
PeerTube-255c00305c899d8db829b07b49d06cd2fea7ca02.zip
Fix error messages
Diffstat (limited to 'client/src/app/+videos/+video-watch/shared/comment')
-rw-r--r--client/src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts b/client/src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts
index fd3614297..9f4a68736 100644
--- a/client/src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts
+++ b/client/src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts
@@ -148,7 +148,7 @@ export class VideoCommentAddComponent extends FormReactive implements OnChanges,
148 error: err => { 148 error: err => {
149 this.addingComment = false 149 this.addingComment = false
150 150
151 this.notifier.error(err.text) 151 this.notifier.error(err.message)
152 } 152 }
153 }) 153 })
154 } 154 }