Skip to content

Commit a57c1f4

Browse files
committed
Fixs this match for ecto 3.12
1 parent 43c34c4 commit a57c1f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fob/ordering.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ defmodule Fob.Ordering do
2424

2525
@spec config(%Query{}) :: [t()]
2626
def config(%Query{order_bys: orderings} = query) do
27-
Enum.flat_map(orderings, fn %Query.QueryExpr{expr: exprs} ->
27+
Enum.flat_map(orderings, fn %{expr: exprs} ->
2828
config_from_ordering_expressions(exprs, query)
2929
end)
3030
end

0 commit comments

Comments
 (0)