Skip to content

Commit

Permalink
Fix missing parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
mremond committed Jan 16, 2019
1 parent 97a7442 commit 1006e1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/mget/mget.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ func getProfiles(profileURL string) error {
// Be careful: We only need to keep bidirectionally certified profiles to avoid spammy URL
// Probably we can return a list of certified profile, separated by a list of possible risky profile (we will not
// crawl them further).
urls, err := semweb.ExtractRelMe(body)
ctx := semweb.Context{Client: client, Url: profileURL}
urls, err := semweb.ExtractRelMe(ctx, body)
if err != nil {
return err
}
Expand Down

0 comments on commit 1006e1e

Please sign in to comment.