Skip to content

Commit

Permalink
fix: use ref from data not const (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-FFFFFF authored Mar 2, 2024
1 parent 974afa6 commit 6c33700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ func (p *AlzProvider) Configure(ctx context.Context, req provider.ConfigureReque
urls := make([]string, 0)
if data.UseAlzLib.ValueBool() {
q := url.Values{}
q.Add("ref", alzLibRef)
q.Add("ref", data.AlzLibRef.ValueString())
q.Add("depth", "1")
urls = append(urls, alzLibUrlFmtStr+q.Encode())
}
Expand Down

0 comments on commit 6c33700

Please sign in to comment.