diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 150b12d..c750ac1 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # Release Notes -## 1.0.3 - 2018-12-21 +## 1.0.4 - 2018-12-21 * Christmas edition ## 0.16.25 - 2018-12-18 diff --git a/src/Client/ReleaseNotes.fs b/src/Client/ReleaseNotes.fs index 5a0d398..309436e 100644 --- a/src/Client/ReleaseNotes.fs +++ b/src/Client/ReleaseNotes.fs @@ -1,13 +1,13 @@ module internal ReleaseNotes -let Version = "1.0.3" +let Version = "1.0.4" let IsPrerelease = false let Notes = """ # Release Notes -## 1.0.3 - 2018-12-21 +## 1.0.4 - 2018-12-21 * Christmas edition ## 0.16.25 - 2018-12-18 diff --git a/src/Server/Server.fs b/src/Server/Server.fs index e9dafa3..b284f5c 100644 --- a/src/Server/Server.fs +++ b/src/Server/Server.fs @@ -199,7 +199,7 @@ let youtubeEndpoint = pipeline { set_header "Content-Type" "application/json" plug (fun next ctx -> task { - let! _,urls = discoverYoutubeLink "https://www.youtube.com/watch?v=n2FHn3B0K4U" + let! _,urls = discoverYoutubeLink "https://www.youtube.com/watch?v=2zCtErDjP2U" let txt = sprintf "%A" urls return! setBodyFromString txt next ctx })