From 1f11f74302d62d73890d5d473bb815e358e254c0 Mon Sep 17 00:00:00 2001 From: Maksym Pavlenko Date: Sun, 26 Nov 2017 00:31:48 -0800 Subject: [PATCH] Use http for download links --- pkg/builders/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/builders/common.go b/pkg/builders/common.go index fd295fb..5a6c5db 100644 --- a/pkg/builders/common.go +++ b/pkg/builders/common.go @@ -21,6 +21,6 @@ func makeEnclosure(feed *model.Feed, id string, lengthInBytes int64) (string, it contentType = itunes.M4A } - url := fmt.Sprintf("https://podsync.net/download/%s/%s.%s", feed.HashID, id, ext) + url := fmt.Sprintf("http://podsync.net/download/%s/%s.%s", feed.HashID, id, ext) return url, contentType, lengthInBytes }