Skip to content

Commit

Permalink
Fixup cli method for creating configs/feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
cavis committed Apr 11, 2024
1 parent 19b4666 commit a1c3266
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions app/models/apple/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,7 @@ def self.build_apple_config(podcast, key)
raise "Stopping build_apple_config" if $stdin.gets.chomp.downcase != "y"
end

Apple::Config.new(
podcast: podcast,
public_feed: podcast.default_feed,
private_feed: find_or_build_private_feed(podcast),
key: key
)
Apple::Config.new(feed: find_or_build_private_feed(podcast), key: key)
end

def self.mark_as_delivered!(apple_publisher)
Expand Down

0 comments on commit a1c3266

Please sign in to comment.