Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
# Conflicts:
#	lib/api/videos/best/best.js
#	lib/api/videos/dashboard/dashboard.js
#	lib/api/videos/fresh/fresh.js
#	lib/api/videos/verified/verified.js
  • Loading branch information
rodrigogs committed Jul 2, 2018
2 parents d1d1b89 + cdd6319 commit 3c5fc9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/api/videos/best/parseResponse.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const getPages = ($) => {
.get();
};

const parseResponse = page => ({ data }) => {
const parseResponse = (page, { data }) => {
const $ = cheerio.load(data);

const videos = getVideos($);
Expand Down
2 changes: 1 addition & 1 deletion lib/api/videos/dashboard/parseResponse.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const getPages = ($) => {
.get();
};

const parseResponse = page => ({ data }) => {
const parseResponse = (page, { data }) => {
const $ = cheerio.load(data);

const videos = getVideos($);
Expand Down
2 changes: 1 addition & 1 deletion lib/api/videos/fresh/parseResponse.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const getPages = ($) => {
.get();
};

const parseResponse = page => ({ data }) => {
const parseResponse = (page, { data }) => {
const $ = cheerio.load(data);

const videos = getVideos($);
Expand Down
2 changes: 1 addition & 1 deletion lib/api/videos/verified/parseResponse.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const getPages = ($) => {
.get();
};

const parseResponse = page => ({ data }) => {
const parseResponse = (page, { data }) => {
const $ = cheerio.load(data);

const videos = getVideos($);
Expand Down

0 comments on commit 3c5fc9e

Please sign in to comment.