mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
use full_text when it's available
This commit is contained in:
parent
5fc1768454
commit
482b8c2e80
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ defmodule Philomena.Scrapers.Twitter do
|
||||||
%{
|
%{
|
||||||
source_url: tweet["url"],
|
source_url: tweet["url"],
|
||||||
author_name: tweet["user"],
|
author_name: tweet["user"],
|
||||||
description: tweet["text"],
|
description: tweet["text"] || tweet["full_text"],
|
||||||
images: images
|
images: images
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue