Removes the issue when sharing

This commit is contained in:
stom79 2017-11-19 14:02:51 +01:00
parent 77220c121a
commit 0f8eb792f9
1 changed files with 1 additions and 3 deletions

View File

@ -391,9 +391,7 @@ public class TootActivity extends AppCompatActivity implements OnRetrieveSearcAc
final String image = intent.getStringExtra("image");
String title = intent.getStringExtra("title");
String description = intent.getStringExtra("description");
if( description != null && description.length() > 20 ){
if( description.length() > 200 )
description = description.substring(0,199) + "";
if( description != null ){
if( title != null)
sharedContent = title + "\n\n" + description + "\n\n" + sharedContentIni;
else