From 97a446ddcfef9759f44c12f1def8d576a3d82d0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro?= Date: Sun, 5 May 2024 02:34:00 +0200 Subject: [PATCH] rename participant to participant_uuid --- apps/scrapper/lib/scrapper/processor/match_processor.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/scrapper/lib/scrapper/processor/match_processor.ex b/apps/scrapper/lib/scrapper/processor/match_processor.ex index ff5b6f6..25ba8ca 100644 --- a/apps/scrapper/lib/scrapper/processor/match_processor.ex +++ b/apps/scrapper/lib/scrapper/processor/match_processor.ex @@ -59,8 +59,8 @@ defmodule Scrapper.Processor.MatchProcessor do end decoded_match.metadata.participants - |> Enum.each(fn participant -> - Scrapper.Queue.PlayerQueue.queue_player(participant) + |> Enum.each(fn participant_puuid -> + Scrapper.Queue.PlayerQueue.queue_puuid(participant_puuid) end) end