Merge branch 'master' of git.fakecake.org:tt-rss-android

This commit is contained in:
Andrew Dolgov 2016-03-15 16:06:05 +03:00
commit 3631c4354d
1 changed files with 2 additions and 2 deletions

View File

@ -280,11 +280,11 @@ public class CommonActivity extends ActionBarActivity implements SharedPreferenc
}
protected void shareText(String text) {
startActivity(getShareIntent(text, null));
startActivity(Intent.createChooser(getShareIntent(text, null), text));
}
protected void shareText(String text, String subject) {
startActivity(getShareIntent(text, subject));
startActivity(Intent.createChooser(getShareIntent(text, subject), text));
}
private void openUriWithCustomTab(Uri uri) {