Skip to content

Commit

Permalink
#3242 Fix call to removed method (pluck -> map)
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Kuijpers committed Jan 16, 2024
1 parent 7e02120 commit 0e2d221
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
var results = [];

if(!_.isEmpty(data.hits)){
results = _.pluck(data.hits, "path");
results = _.map(data.hits, "path");
}

if (callback){
Expand Down

0 comments on commit 0e2d221

Please sign in to comment.