diff --git a/lib/pinchflat_web/controllers/pages/page_html/history_table_live.ex b/lib/pinchflat_web/controllers/pages/page_html/history_table_live.ex index 2e5ee59..29d7ece 100644 --- a/lib/pinchflat_web/controllers/pages/page_html/history_table_live.ex +++ b/lib/pinchflat_web/controllers/pages/page_html/history_table_live.ex @@ -105,8 +105,6 @@ defmodule Pinchflat.Pages.HistoryTableLive do end def handle_event("force_download", %{ "source-id" => source_id, "media-id" => media_id }, socket) do - IO.puts("source_id: #{source_id}, media_id: #{media_id}") - media_item = Media.get_media_item!(media_id) MediaDownloadWorker.kickoff_with_task(media_item, %{force: true}) diff --git a/lib/pinchflat_web/controllers/sources/source_html/media_item_table_live.ex b/lib/pinchflat_web/controllers/sources/source_html/media_item_table_live.ex index 203a35f..b627a4b 100644 --- a/lib/pinchflat_web/controllers/sources/source_html/media_item_table_live.ex +++ b/lib/pinchflat_web/controllers/sources/source_html/media_item_table_live.ex @@ -132,8 +132,6 @@ defmodule PinchflatWeb.Sources.MediaItemTableLive do end def handle_event("force_download", %{ "source-id" => source_id, "media-id" => media_id }, socket) do - IO.puts("source_id: #{source_id}, media_id: #{media_id}") - media_item = Media.get_media_item!(media_id) MediaDownloadWorker.kickoff_with_task(media_item, %{force: true})