Merge pull request #1187 from GilgusMaximus/development
Fix for missing import of marked as watched videos & publish date displayed
This commit is contained in:
commit
e119e8305b
|
@ -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')
|
||||
})
|
||||
|
|
|
@ -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')
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue