diff options
| author | nytpu <alex@nytpu.com> | 2021-03-17 08:43:19 -0600 |
|---|---|---|
| committer | nytpu <alex@nytpu.com> | 2021-03-17 09:02:02 -0600 |
| commit | f9428c3e0eee710f9471044bb1068b3e4341f4f8 (patch) | |
| tree | 77fcb310feb9119b15a5f38e525850e1eb6b5117 /fetch/fetch.go | |
| parent | 09c1c4caabe206fb825575b04f9de932da2aa785 (diff) | |
add updateGeminiPage and refactor newGeminiPage to use updateGeminiPage.
Diffstat (limited to 'fetch/fetch.go')
| -rw-r--r-- | fetch/fetch.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fetch/fetch.go b/fetch/fetch.go index 1f16143..3fc160b 100644 --- a/fetch/fetch.go +++ b/fetch/fetch.go @@ -66,9 +66,7 @@ func UpdateFeed(f *core.Feed) error { func UpdatePage(p *core.Page) error { switch p.Link.Scheme { case "gemini": - // return updateGeminiPage(p) - // TODO - fallthrough + return updateGeminiPage(p) case "http", "https": // return updateHTTPPage(p) // TODO |
