Fix links and image sources in rss content

This commit is contained in:
Bel LaPointe
2018-10-10 14:02:36 -06:00
parent b7cd1745b1
commit 6c40901465
2 changed files with 17 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ func Test_Server(t *testing.T) {
for _, _ = range cases {
var err error
s, err := New(testPort, func(string, string, string, time.Duration) {}, func(string, int) (string, error) { return "", nil })
s, err := New(testPort, func(string, string, string, time.Duration) {}, func(string, int) (string, error) { return "", nil }, func(string) (string, error) { return "", nil })
if err != nil {
t.Errorf("failed to create server: %v", err)
}