mirror of
https://github.com/mmjee/Piped-Material.git
synced 2024-12-06 19:26:36 +01:00
Allow failing on findLastWatch
This commit is contained in:
@@ -260,7 +260,11 @@ export default {
|
||||
},
|
||||
|
||||
async getVideoData () {
|
||||
this.lastWatch = await findLastWatch(this.videoId)
|
||||
try {
|
||||
this.lastWatch = await findLastWatch(this.videoId)
|
||||
} catch (e) {
|
||||
console.error('Errored while finding last watched', e)
|
||||
}
|
||||
|
||||
const video = await this.fetchVideo()
|
||||
video.videoId = this.videoId
|
||||
|
||||
Reference in New Issue
Block a user