mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Better error message in videos list
This commit is contained in:
parent
f2aa2c3cca
commit
f27a885a43
@ -159,7 +159,12 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy, DisableFor
|
||||
this.onDataSubject.next(data)
|
||||
},
|
||||
|
||||
error => this.notifier.error(error.message)
|
||||
error => {
|
||||
const message = this.i18n('Cannot load more videos. Try again later.')
|
||||
|
||||
console.error(message, { error })
|
||||
this.notifier.error(message)
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user