Skip to content

Commit

Permalink
fixed separator between parts of textContent
Browse files Browse the repository at this point in the history
  • Loading branch information
travv0 committed Apr 4, 2024
1 parent b5cfa15 commit 3be467f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Youtube.fs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ let getCommunityUpdates () : string list =
if not (Set.contains post.id (getDb ()).SeenCommunityPosts) then
yield
$"**{channelTitle}** has a new community post: \n"
+ (post.contentText |> List.map (fun x -> x.text) |> String.concat "\n")
+ (post.contentText |> List.map (fun x -> x.text) |> String.concat "")
+ $"\n\nSee full post at https://www.youtube.com/post/%s{post.id}"

let postIds = channel.Community |> List.map (fun x -> x.id)
Expand Down

0 comments on commit 3be467f

Please sign in to comment.