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/mail.go | |
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/mail.go | 4 |
1 files changed, 2 insertions, 2 deletions
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" |