summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornytpu <alex@nytpu.com>2021-03-17 08:41:42 -0600
committernytpu <alex@nytpu.com>2021-03-17 08:41:42 -0600
commit1389fc8d6ee89decc49a510557ab43cbd64c5b1d (patch)
tree225d4e79f812c28dbb96efcc548aa8ce8700411c
parent07d85c0bfc82b5df7366d3810c95aa8b959837a4 (diff)
fix comment and update readme
-rw-r--r--README.md2
-rw-r--r--core/structs.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7f8678e..084e08d 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ See `comitium help` for basic usage. For more advanced usage, see
There's many gemini aggregators out there, and yet not one does everything I
want it to. I want an aggregator that:
-1. works with gemini (and possibly gopher)
+1. works with gemini (and possibly gopher & http)
2. supports atom (and possibly rss & json)
3. supports gemini feeds
4. can watch for page changes (and possibly watch for new gemtext headers as
diff --git a/core/structs.go b/core/structs.go
index eec1473..a97fc74 100644
--- a/core/structs.go
+++ b/core/structs.go
@@ -34,7 +34,7 @@ type jsonData struct {
type Feed struct {
Title string `json:"title,omitempty"`
Link *url.URL `json:"link,omitempty"` // link to the human-readable page for the feed. same as FeedLink for gemini feeds.
- FeedLink *url.URL `json:"feedlink,omitempty"` // link to the feed itself. if empty, use Link instead.
+ FeedLink *url.URL `json:"feedlink,omitempty"` // link to the feed itself.
Updated time.Time `json:"updated,omitempty"`
Items []*Item `json:"items,omitempty"`
}