Skip to content

Commit 7f4c2b6

Browse files
authored
Fix debug controller domain filtering (#4858)
1 parent 2112fee commit 7f4c2b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/plausible_web/controllers/debug_controller.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ defmodule PlausibleWeb.DebugController do
6565
where(
6666
q,
6767
[l],
68-
fragment("JSONExtractInt(?, \'site_domain\') = ?", l.log_comment, ^site_domain)
68+
fragment("JSONExtractString(?, \'site_domain\') = ?", l.log_comment, ^site_domain)
6969
)
7070

7171
defp filter_by_params(q, conn, _),

0 commit comments

Comments
 (0)