Trim more characters from gemini titles
1 files changed, 1 insertions(+), 1 deletions(-) M feeds/fetch.go
M feeds/fetch.go => feeds/fetch.go +1 -1
@@ 60,7 60,7 @@ func fetchGemini(ctx context.Context, remoteURL *url.URL) (*rss.Feed, string, er if line.Name == "" || len(line.Name) < 10 { continue } name := strings.TrimLeft(line.Name[:10], " ") name := strings.TrimLeft(line.Name[:10], " -—") date, err := time.Parse("2006-01-02", name) if err != nil { continue