Mix format

This commit is contained in:
Uku Taht 2021-09-10 12:38:03 +03:00
parent 7cb148a4f1
commit bd797c201f
2 changed files with 5 additions and 2 deletions

View File

@ -205,7 +205,8 @@ defmodule PlausibleWeb.Api.ExternalController do
defp get_root_domain(hostname) when is_binary(hostname) do
PublicSuffix.registrable_domain(hostname)
end
defp get_root_domain(hostname), do: hostname
defp get_root_domain(hostname), do: hostname
defp calculate_screen_size(nil), do: nil
defp calculate_screen_size(width) when width < 576, do: "Mobile"

View File

@ -815,7 +815,9 @@ defmodule PlausibleWeb.Api.ExternalControllerTest do
assert one.user_id != two.user_id
end
test "different hostname results in the same user ID when the root domain in the same", %{conn: conn} do
test "different hostname results in the same user ID when the root domain in the same", %{
conn: conn
} do
params = %{
url: "https://user-id-test-domain.com/",
domain: "user-id-test-domain-6.com",