Fix for missing import of marked as watched videos

This commit is contained in:
Luca 2021-04-10 22:04:59 +02:00
parent edb6de2e88
commit 58882b3e16
2 changed files with 2 additions and 4 deletions

View File

@ -929,7 +929,7 @@ export default Vue.extend({
}
})
if (Object.keys(historyObject).length < requiredKeys.length) {
if (Object.keys(historyObject).length < (requiredKeys.length - 2)) {
this.showToast({
message: this.$t('Settings.Data Settings.History object has insufficient data, skipping item')
})

View File

@ -383,7 +383,7 @@ export default Vue.extend({
title: this.title,
author: this.channelName,
authorId: this.channelId,
published: '',
published: this.publishedText.split(',')[0],
description: this.description,
viewCount: this.viewCount,
lengthSeconds: this.data.lengthSeconds,
@ -393,9 +393,7 @@ export default Vue.extend({
paid: false,
type: 'video'
}
this.updateHistory(videoData)
this.showToast({
message: this.$t('Video.Video has been marked as watched')
})