1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00

Don't return error if unable to save feed to Dynamo

This commit is contained in:
Maksym Pavlenko
2019-04-06 13:29:11 -07:00
parent 929041c692
commit f4e92ef642

View File

@ -183,7 +183,6 @@ func (s *Service) BuildFeed(hashID string) ([]byte, error) {
if oldLastID != feed.LastID { if oldLastID != feed.LastID {
if err := s.storage.UpdateFeed(feed); err != nil { if err := s.storage.UpdateFeed(feed); err != nil {
log.WithError(err).WithField("feed_id", hashID).Error("failed to save feed") log.WithError(err).WithField("feed_id", hashID).Error("failed to save feed")
return nil, err
} }
} }