Quick fix for database filling.
authorRoger Braun <roger@rogerbraun.net>
Mon, 8 May 2017 22:20:05 +0000 (00:20 +0200)
committerRoger Braun <roger@rogerbraun.net>
Mon, 8 May 2017 22:20:05 +0000 (00:20 +0200)
lib/pleroma/web/twitter_api/twitter_api_controller.ex

index 96a5f2151dd1b913f56064cfcc505519c1f0b629..3fb60da6c3e9e17838f62089389d78c527761f84 100644 (file)
@@ -14,7 +14,8 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
   end
 
   def status_update(%{assigns: %{user: user}} = conn, %{"status" => status_text} = status_data) do
-    if status_text |> String.trim |> String.length != 0 do
+    l = status_text |> String.trim |> String.length
+    if l > 0 && l < 5000 do
       media_ids = extract_media_ids(status_data)
       {:ok, activity} = TwitterAPI.create_status(user, Map.put(status_data, "media_ids",  media_ids))
       conn