Skip to content

Commit

Permalink
Fix broken query condition after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
zoldar committed May 14, 2024
1 parent 7f7f7cc commit 9a474a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plausible/stats/imported.ex
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ defmodule Plausible.Stats.Imported do

defp maybe_apply_filter(q, query, "event:props:path", _) do
if name = find_special_goal_filter(query, @goals_with_path) do
where(q, [i], i.path == ^path)
where(q, [i], i.name == ^name)
else
q
end
Expand Down

0 comments on commit 9a474a5

Please sign in to comment.