diff --git a/lib/radiator/podcasts/podcast.ex b/lib/radiator/podcasts/podcast.ex index dd955887..93312982 100644 --- a/lib/radiator/podcasts/podcast.ex +++ b/lib/radiator/podcasts/podcast.ex @@ -14,6 +14,6 @@ defmodule Radiator.Podcasts.Podcast do def changeset(podcast, attrs) do podcast |> cast(attrs, [:title, :hostname]) - |> validate_required([:title, :hostname]) + |> validate_required([:title]) end end