Skip to content

Commit

Permalink
fix(feijipan): incorrect address of download link (close #5859)
Browse files Browse the repository at this point in the history
  • Loading branch information
xhofe committed Jan 11, 2024
1 parent bb6747d commit 292bbe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/ilanzou/driver.go
Expand Up @@ -114,7 +114,7 @@ func (d *ILanZou) List(ctx context.Context, dir model.Obj, args model.ListArgs)
}

func (d *ILanZou) Link(ctx context.Context, file model.Obj, args model.LinkArgs) (*model.Link, error) {
u, err := url.Parse("https://api.ilanzou.com/unproved/file/redirect")
u, err := url.Parse(d.conf.base + "/" + d.conf.unproved + "/file/redirect")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 292bbe9

Please sign in to comment.