Skip to content

Commit

Permalink
Reorder parser steps
Browse files Browse the repository at this point in the history
  • Loading branch information
macobo committed Aug 28, 2024
1 parent aa7d66b commit 10259fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plausible/stats/filters/query_parser.ex
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ defmodule Plausible.Stats.Filters.QueryParser do
include: include
},
:ok <- validate_order_by(query),
:ok <- validate_custom_props_access(site, query),
:ok <- validate_toplevel_only_filters(query),
:ok <- validate_special_metrics_filters(query),
:ok <- validate_filtered_goals_exist(query),
:ok <- validate_custom_props_access(site, query),
:ok <- validate_metrics(query),
:ok <- validate_include(query) do
{:ok, query}
Expand Down

0 comments on commit 10259fc

Please sign in to comment.