From ba14afda4007a39f3e7111f0c73c4a0f3a1dca71 Mon Sep 17 00:00:00 2001 From: Ryan Fox Date: Sun, 10 Apr 2022 16:27:55 -0700 Subject: [PATCH] GoToSocial: Fix streaming It did not like the trailing slash, lol. --- src/Mastodon/ApiUrl.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mastodon/ApiUrl.elm b/src/Mastodon/ApiUrl.elm index a97d8b4..5236090 100644 --- a/src/Mastodon/ApiUrl.elm +++ b/src/Mastodon/ApiUrl.elm @@ -209,7 +209,7 @@ unfavourite (StatusId id) = streaming : String streaming = - apiPrefix ++ "/streaming/" + apiPrefix ++ "/streaming" uploadMedia : String