fix(back): Various small fixes in backend

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2023-05-03 10:03:21 +02:00
parent 3d21a06789
commit 2a57340a82
3 changed files with 7 additions and 2 deletions

View File

@@ -228,7 +228,8 @@ defmodule Mobilizon.Service.ActorSuspension do
Enum.each(participations, &Events.delete_participant/1)
end
defp delete_participations(%Actor{type: :Group}), do: :ok
# Ignore for all other types of actors
defp delete_participations(%Actor{}), do: :ok
@spec delete_members(Multi.t(), Actor.t()) :: Multi.t()
defp delete_members(%Multi{} = multi, %Actor{type: :Person, id: actor_id}) do

View File

@@ -17,7 +17,7 @@ defmodule Mobilizon.Service.Workers.EventDelayedNotificationWorker do
%Event{draft: false} = event ->
Group.notify_of_new_event(event)
nil ->
_ ->
# Event still a draft or event deleted inbetween, no worries, just ignore
:ok
end