fix sharing to Tusky (#1140)
fixes duplicate title when sharing from Feedly or Google News
This commit is contained in:
parent
17082cde30
commit
e839a2c9fe
|
@ -623,7 +623,11 @@ public final class ComposeActivity
|
||||||
String text = intent.getStringExtra(Intent.EXTRA_TEXT);
|
String text = intent.getStringExtra(Intent.EXTRA_TEXT);
|
||||||
String shareBody = null;
|
String shareBody = null;
|
||||||
if(subject != null && text != null){
|
if(subject != null && text != null){
|
||||||
|
if(!subject.equals(text) && !text.contains(subject)){
|
||||||
shareBody = String.format("%s\n%s", subject, text);
|
shareBody = String.format("%s\n%s", subject, text);
|
||||||
|
}else{
|
||||||
|
shareBody = text;
|
||||||
|
}
|
||||||
}else if(text != null){
|
}else if(text != null){
|
||||||
shareBody = text;
|
shareBody = text;
|
||||||
}else if(subject != null){
|
}else if(subject != null){
|
||||||
|
|
Loading…
Reference in New Issue