diff --git a/src/routes/search.nim b/src/routes/search.nim index ed2c397..1c84fb9 100644 --- a/src/routes/search.nim +++ b/src/routes/search.nim @@ -40,7 +40,7 @@ proc createSearchRouter*(cfg: Config) = # resp renderMain(renderTweetSearch(tweets, prefs, getPath()), # request, cfg, prefs, title, rss=rss) var fakeTimeline = Timeline(beginning: true) - fakeTimeline.content.add Tweet(tombstone: "Tweet search is unavailable for now") + fakeTimeline.content.add Tweet(tombstone: "Tweet search isn't implemented right now") resp renderMain(renderTweetSearch(fakeTimeline, prefs, getPath()), request, cfg, prefs, title) else: diff --git a/src/routes/timeline.nim b/src/routes/timeline.nim index 4ac60d2..9ddc57c 100644 --- a/src/routes/timeline.nim +++ b/src/routes/timeline.nim @@ -57,7 +57,7 @@ proc fetchProfile*(after: string; query: Query; skipRail=false; of replies: await getGraphUserTweets(userId, TimelineKind.replies, after) of media: await getGraphUserTweets(userId, TimelineKind.media, after) else: Profile(tweets: Timeline(beginning: true, content: @[Chain(content: - @[Tweet(tombstone: "Tweet search is unavailable for now")] + @[Tweet(tombstone: "Tweet search isn't implemented right now")] )])) # else: await getGraphSearch(query, after)