Remove superflous function.
authorRoger Braun <roger@rogerbraun.net>
Tue, 25 Apr 2017 09:33:32 +0000 (11:33 +0200)
committerRoger Braun <roger@rogerbraun.net>
Tue, 25 Apr 2017 09:33:32 +0000 (11:33 +0200)
lib/pleroma/web/twitter_api/twitter_api_controller.ex

index f80b66858adb30398f27d64170bb00ccfa3f44ef..d9ff7e5305b2e55e7022e4bb12c6d4b7811fd4ea 100644 (file)
@@ -12,10 +12,6 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
     |> json_reply(200, response)
   end
 
-  def status_update(conn, %{"status" => ""} = _status_data) do
-    empty_status_reply(conn)
-  end
-
   def status_update(%{assigns: %{user: user}} = conn, %{"status" => status_text} = status_data) do
     if status_text |> String.trim |> String.length != 0 do
       media_ids = extract_media_ids(status_data)