1
0
mirror of https://github.com/zedeus/nitter.git synced 2025-12-08 04:55:37 -05:00

Fix want-my-rss detection

This commit is contained in:
Zed
2019-09-15 12:57:44 +02:00
parent 36484c73fd
commit 6237460f77
3 changed files with 5 additions and 4 deletions

View File

@@ -3,14 +3,11 @@ import asyncdispatch, strutils
import jester
import router_utils, timeline
import ".."/[types, utils, cache, agents, search]
import ".."/[cache, agents, search]
import ../views/general
include "../views/rss.nimf"
export uri
export cache, search, agents
proc showRss*(name: string; query: Option[Query]): Future[string] {.async.} =
let (profile, timeline, _) = await fetchSingleTimeline(name, "", getAgent(), query)
return renderTimelineRss(timeline.content, profile)