Made YT cookies off by default

This commit is contained in:
Kieran Eglin 2024-08-14 11:51:57 -07:00
parent 678ea1fe33
commit ab69fa5332
No known key found for this signature in database
GPG key ID: 193984967FCF432D
2 changed files with 2 additions and 2 deletions

View file

@ -74,7 +74,7 @@ defmodule Pinchflat.Sources.Source do
field :collection_type, Ecto.Enum, values: [:channel, :playlist] field :collection_type, Ecto.Enum, values: [:channel, :playlist]
field :index_frequency_minutes, :integer, default: 60 * 24 field :index_frequency_minutes, :integer, default: 60 * 24
field :fast_index, :boolean, default: false 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 :download_media, :boolean, default: true
field :last_indexed_at, :utc_datetime field :last_indexed_at, :utc_datetime
# Only download media items that were published after this date # Only download media items that were published after this date

View file

@ -90,7 +90,7 @@
field={f[:use_cookies]} field={f[:use_cookies]}
type="toggle" type="toggle"
label="Use Cookies for Downloading" 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 <.input