Fix for missing import of marked as watched videos
This commit is contained in:
		
							parent
							
								
									edb6de2e88
								
							
						
					
					
						commit
						58882b3e16
					
				| 
						 | 
				
			
			@ -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