Skip to content
Snippets Groups Projects
Commit e7ea0979 authored by Chocobozzz's avatar Chocobozzz
Browse files

Use lodash v4

parent 8bf30130
No related branches found
No related tags found
No related merge requests found
'use strict' 'use strict'
const async = require('async') const async = require('async')
const pluck = require('lodash-node/compat/collection/pluck') const map = require('lodash-node/compat/collection/map')
const constants = require('../initializers/constants') const constants = require('../initializers/constants')
const logger = require('../helpers/logger') const logger = require('../helpers/logger')
...@@ -184,8 +184,8 @@ function removeBadPods () { ...@@ -184,8 +184,8 @@ function removeBadPods () {
if (pods.length === 0) return if (pods.length === 0) return
const urls = pluck(pods, 'url') const urls = map(pods, 'url')
const ids = pluck(pods, '_id') const ids = map(pods, '_id')
Videos.removeAllRemotesOf(urls, function (err, r) { Videos.removeAllRemotesOf(urls, function (err, r) {
if (err) { if (err) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment