We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 291c789 commit d9cc62fCopy full SHA for d9cc62f
lib/algora/workspace/workspace.ex
@@ -951,7 +951,7 @@ defmodule Algora.Workspace do
951
{:cont, {:ok, [user | users]}}
952
953
{:error, reason}, acc ->
954
- Logger.error("Something went wrong fetching user #{IO.inspect(reason)}")
+ Logger.error("Something went wrong fetching user #{inspect(reason)}")
955
{:cont, acc}
956
# {:halt, {:error, reason}}
957
end)
@@ -984,7 +984,6 @@ defmodule Algora.Workspace do
984
Enum.uniq_by(users_with_contributions ++ users_marked_synced, & &1.id)
985
end
986
987
-
988
@spec mark_users_as_synced(list(String.t()), list(User.t())) :: :ok
989
defp mark_users_as_synced(users_without_contributions, users) do
990
if not Enum.empty?(users_without_contributions) do
0 commit comments