diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2021-10-29 13:52:10 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2021-10-29 13:52:10 +0200 |
commit | 4b59d684c18e8e829179f3c839176a81780d64ee (patch) | |
tree | fca0cbcab172b10539aabab24af9a7a5fcd9603e /internal/feed | |
parent | f17f63bb944d886b552facf4b28a557b8e4a64d5 (diff) | |
download | feed2imap-go-4b59d684c18e8e829179f3c839176a81780d64ee.tar.gz feed2imap-go-4b59d684c18e8e829179f3c839176a81780d64ee.tar.bz2 feed2imap-go-4b59d684c18e8e829179f3c839176a81780d64ee.zip |
Renamed forked dependencies, because 'replace' in go.mod leads to problems.
Diffstat (limited to '')
-rw-r--r-- | internal/feed/feed.go | 2 | ||||
-rw-r--r-- | internal/feed/filter/filter.go | 2 | ||||
-rw-r--r-- | internal/feed/item.go | 2 | ||||
-rw-r--r-- | internal/feed/mail.go | 4 | ||||
-rw-r--r-- | internal/feed/parse.go | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/internal/feed/feed.go b/internal/feed/feed.go index 3b9aba1..014f8b6 100644 --- a/internal/feed/feed.go +++ b/internal/feed/feed.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "github.com/mmcdole/gofeed" + "github.com/Necoro/gofeed" "github.com/Necoro/feed2imap-go/internal/feed/filter" "github.com/Necoro/feed2imap-go/pkg/config" diff --git a/internal/feed/filter/filter.go b/internal/feed/filter/filter.go index 8ff8a97..6377944 100644 --- a/internal/feed/filter/filter.go +++ b/internal/feed/filter/filter.go @@ -1,9 +1,9 @@ package filter import ( + "github.com/Necoro/gofeed" "github.com/antonmedv/expr" "github.com/antonmedv/expr/vm" - "github.com/mmcdole/gofeed" ) type Filter struct { diff --git a/internal/feed/item.go b/internal/feed/item.go index b45f5c5..44e878c 100644 --- a/internal/feed/item.go +++ b/internal/feed/item.go @@ -7,8 +7,8 @@ import ( "strings" "time" + "github.com/Necoro/gofeed" "github.com/google/uuid" - "github.com/mmcdole/gofeed" "github.com/Necoro/feed2imap-go/pkg/config" "github.com/Necoro/feed2imap-go/pkg/util" diff --git a/internal/feed/mail.go b/internal/feed/mail.go index f5863a6..2865800 100644 --- a/internal/feed/mail.go +++ b/internal/feed/mail.go @@ -11,12 +11,12 @@ import ( "strings" "time" + "github.com/Necoro/gofeed" + "github.com/Necoro/html2text" "github.com/PuerkitoBio/goquery" "github.com/emersion/go-message" "github.com/emersion/go-message/mail" "github.com/gabriel-vasile/mimetype" - "github.com/jaytaylor/html2text" - "github.com/mmcdole/gofeed" "golang.org/x/net/html" "github.com/Necoro/feed2imap-go/internal/feed/template" diff --git a/internal/feed/parse.go b/internal/feed/parse.go index a2812bd..520def8 100644 --- a/internal/feed/parse.go +++ b/internal/feed/parse.go @@ -5,8 +5,8 @@ import ( "io" "os/exec" + "github.com/Necoro/gofeed" "github.com/google/uuid" - "github.com/mmcdole/gofeed" "github.com/Necoro/feed2imap-go/internal/http" ) |