Skip to content

Commit

Permalink
unified function call styles
Browse files Browse the repository at this point in the history
  • Loading branch information
LainLayer committed Jan 14, 2022
1 parent aee222e commit eff0980
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/routes/embed.nim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ proc createEmbedRouter*(cfg: Config) =
if convo == nil or convo.tweet == nil or convo.tweet.video.isNone:
resp Http404

resp renderVideoEmbed(cfg, request, convo.tweet)
resp renderVideoEmbed(convo.tweet, cfg, request)

get "/@user/status/@id/embed":
let
Expand All @@ -25,7 +25,7 @@ proc createEmbedRouter*(cfg: Config) =
if convo == nil or convo.tweet == nil:
resp Http404

resp $renderTweetEmbed(convo.tweet, prefs, path, cfg, request)
resp $renderTweetEmbed(convo.tweet, path, prefs, cfg, request)

get "/embed/Tweet.html":
let id = @"id"
Expand Down
2 changes: 1 addition & 1 deletion src/views/embed.nim
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import general, tweet

const doctype = "<!DOCTYPE html>\n"

proc renderVideoEmbed*(cfg: Config; req: Request; tweet: Tweet): string =
proc renderVideoEmbed*(tweet: Tweet; cfg: Config; req: Request): string =
let thumb = get(tweet.video).thumb
let vidUrl = getVideoEmbed(cfg, tweet.id)
let prefs = Prefs(hlsPlayback: true)
Expand Down
2 changes: 1 addition & 1 deletion src/views/tweet.nim
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ proc renderTweet*(tweet: Tweet; prefs: Prefs; path: string; class=""; index=0;
a(class="show-thread", href=("/i/status/" & $tweet.threadId)):
text "Show this thread"

proc renderTweetEmbed*(tweet: Tweet; prefs: Prefs; path: string; cfg: Config; req: Request): VNode =
proc renderTweetEmbed*(tweet: Tweet; path: string; prefs: Prefs; cfg: Config; req: Request): VNode =
buildHtml(tdiv(class="tweet-embed")):
renderHead(prefs, cfg, req)
renderTweet(tweet, prefs, path, mainTweet=true)

0 comments on commit eff0980

Please sign in to comment.