Fix timelines in subway tooter.
authorLain Iwakura <lain@soykaf.club>
Tue, 19 Dec 2017 15:15:07 +0000 (16:15 +0100)
committerLain Iwakura <lain@soykaf.club>
Tue, 19 Dec 2017 15:15:07 +0000 (16:15 +0100)
lib/pleroma/formatter.ex
lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
test/web/mastodon_api/mastodon_api_controller_test.exs

index a482c74e4adac72b561ac2e0ca65852830db153d..2cf4b9ca4755c4e67ac57b76f828f9a0e11fae47 100644 (file)
@@ -10,7 +10,7 @@ defmodule Pleroma.Formatter do
   def parse_tags(text, data \\ %{}) do
     Regex.scan(@tag_regex, text)
     |> Enum.map(fn (["#" <> tag = full_tag]) -> {full_tag, String.downcase(tag)} end)
-    |> (fn map -> if data["sensitive"] in [true, "True", "true"], do: [{"#nsfw", "nsfw"}] ++ map, else: map end).()
+    |> (fn map -> if data["sensitive"] in [true, "True", "true", "1"], do: [{"#nsfw", "nsfw"}] ++ map, else: map end).()
   end
 
   def parse_mentions(text) do
index a17068be80259bca6619ba6f52d83f6c34b4c6f5..ffa6f42c897a913216921dc0062b63c630be6c60 100644 (file)
@@ -162,7 +162,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
   def public_timeline(%{assigns: %{user: user}} = conn, params) do
     params = params
     |> Map.put("type", ["Create", "Announce"])
-    |> Map.put("local_only", params["local"] in [true, "True", "true"])
+    |> Map.put("local_only", params["local"] in [true, "True", "true", "1"])
     |> Map.put("blocking_user", user)
 
     activities = ActivityPub.fetch_public_activities(params)
index 80e15f35e1a90e416ff51d80e12e7772c4720271..79ad671d9bf158f466ecb516f4493840aa3db34a 100644 (file)
@@ -43,6 +43,11 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
     |> get("/api/v1/timelines/public", %{"local" => "True"})
 
     assert [%{"content" => "test"}] = json_response(conn, 200)
+
+    conn = build_conn()
+    |> get("/api/v1/timelines/public", %{"local" => "1"})
+
+    assert [%{"content" => "test"}] = json_response(conn, 200)
   end
 
   test "posting a status", %{conn: conn} do