aboutsummaryrefslogtreecommitdiff
path: root/internal/feed
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--internal/feed/feed.go2
-rw-r--r--internal/feed/filter/filter.go2
-rw-r--r--internal/feed/item.go2
-rw-r--r--internal/feed/mail.go4
-rw-r--r--internal/feed/parse.go2
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"
)
td> 2014-05-07Implement interactive rename functionSvend Sorensen1-0/+7 2014-05-07Reorder interactive function to match order of helper functionsSvend Sorensen1-13/+13 2014-05-07Make edit helper function name consistent with other helpersSvend Sorensen1-1/+1 2014-05-07Factor out password completing-read functionSvend Sorensen1-4/+8 2014-05-07Add dash to Package-RequiresSvend Sorensen1-1/+1 2014-05-06Force sane sort order.Jason A. Donenfeld1-2/+2 2014-05-06generate: add --in-place optionJason A. Donenfeld4-9/+33