Skip to content

Commit 8167bcf

Browse files
committed
Fix wrong query parameter for workflow url filter.
1 parent 0531074 commit 8167bcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

logs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func (l *LogsOptions) params() url.Values {
3434
params.Set("state", l.Filter.State)
3535
}
3636
if l.Filter.Url != "" {
37-
params.Set("url", l.Filter.Url)
37+
params.Set("workflowUrl", l.Filter.Url)
3838
}
3939
if l.Filter.CreatedAt != 0 {
4040
params.Set("workflowCreatedAt", strconv.FormatInt(l.Filter.CreatedAt, 10))

0 commit comments

Comments
 (0)