mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Fix import videos duplicate detection
This commit is contained in:
@@ -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')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user