diff --git a/app/models/feed.rb b/app/models/feed.rb index 5f1b565..87361d3 100644 --- a/app/models/feed.rb +++ b/app/models/feed.rb @@ -6,6 +6,6 @@ class Feed key :last_fetched, Time, :default => nil timestamps! - validates :title, :link, :presence => true + validates :title, :presence => true validates_format_of :link, :with => URI::regexp(%w(http https)), :message => "must be a valid URL" end