Fix import videos duplicate detection

pull/1020/head
Chocobozzz 2018-09-04 11:25:40 +02:00
parent eb87f9a4a9
commit ea853b7282
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import * as youtubeDL from 'youtube-dl'
import { VideoPrivacy } from '../../shared/models/videos'
import { doRequestAndSaveToFile } from '../helpers/requests'
import { CONSTRAINTS_FIELDS } from '../initializers'
import { getClient, getVideoCategories, login, searchVideo, uploadVideo } from '../tests/utils'
import { getClient, getVideoCategories, login, searchVideoWithSort, uploadVideo } from '../tests/utils'
import { truncate } from 'lodash'
import * as prompt from 'prompt'
import { remove } from 'fs-extra'
@ -113,7 +113,7 @@ function processVideo (info: any, languageCode: string) {
const videoInfo = await fetchObject(info)
if (program['verbose']) console.log('Fetched object.', videoInfo)
const result = await searchVideo(program['url'], videoInfo.title)
const result = await searchVideoWithSort(program['url'], videoInfo.title, '-match')
console.log('############################################################\n')