From ab69fa5332b09912be6e3ded42d07753d8c1e854 Mon Sep 17 00:00:00 2001 From: Kieran Eglin Date: Wed, 14 Aug 2024 11:51:57 -0700 Subject: [PATCH] Made YT cookies off by default --- lib/pinchflat/sources/source.ex | 2 +- .../controllers/sources/source_html/source_form.html.heex | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pinchflat/sources/source.ex b/lib/pinchflat/sources/source.ex index a0e367b..3a23db8 100644 --- a/lib/pinchflat/sources/source.ex +++ b/lib/pinchflat/sources/source.ex @@ -74,7 +74,7 @@ defmodule Pinchflat.Sources.Source do field :collection_type, Ecto.Enum, values: [:channel, :playlist] field :index_frequency_minutes, :integer, default: 60 * 24 field :fast_index, :boolean, default: false - field :use_cookies, :boolean, default: true + field :use_cookies, :boolean, default: false field :download_media, :boolean, default: true field :last_indexed_at, :utc_datetime # Only download media items that were published after this date diff --git a/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex b/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex index 92b6ef0..c30efed 100644 --- a/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex +++ b/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex @@ -90,7 +90,7 @@ field={f[:use_cookies]} type="toggle" label="Use Cookies for Downloading" - help="Uses your YouTube cookies when downloading (if configured). Good for downloading private playlists. See docs for setup notes" + help="Uses your YouTube cookies for this source (if configured). Used for downloading private playlists and videos. See docs for important details" /> <.input