Skip to content

Commit

Permalink
Fix query continuation expander
Browse files Browse the repository at this point in the history
  • Loading branch information
sirikid committed Aug 22, 2023
1 parent 0109b38 commit 22ee5b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/yuri_template/query_continuation_expander.ex
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defmodule YuriTemplate.QueryContinuationExpander do
Enum.reduce(
kvs,
acc,
fn {k, v}, acc -> [acc, "&", k, "=", encode(v)] end
fn {k, v}, acc -> [acc, "&", to_string(k), "=", encode(v)] end
)

{:ok, vs} when is_list(vs) ->
Expand Down

0 comments on commit 22ee5b4

Please sign in to comment.