aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/src/app/shared/video/abstract-video-list.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/client/src/app/shared/video/abstract-video-list.ts b/client/src/app/shared/video/abstract-video-list.ts
index faeea27d9..a2a12bec7 100644
--- a/client/src/app/shared/video/abstract-video-list.ts
+++ b/client/src/app/shared/video/abstract-video-list.ts
@@ -159,7 +159,12 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy, DisableFor
159 this.onDataSubject.next(data) 159 this.onDataSubject.next(data)
160 }, 160 },
161 161
162 error => this.notifier.error(error.message) 162 error => {
163 const message = this.i18n('Cannot load more videos. Try again later.')
164
165 console.error(message, { error })
166 this.notifier.error(message)
167 }
163 ) 168 )
164 } 169 }
165 170