Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
71362acb
Commit
71362acb
authored
May 09, 2017
by
lain
Browse files
Quick fix for database filling.
parent
1418d727
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/web/twitter_api/twitter_api_controller.ex
View file @
71362acb
...
...
@@ -14,7 +14,8 @@ def verify_credentials(%{assigns: %{user: user}} = conn, _params) 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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment