Replace three dots by a char

This commit is contained in:
stom79 2019-02-19 18:39:59 +01:00
parent 8fc44c9002
commit 214a7c78a5
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public class CustomSharingActivity extends BaseActivity implements OnCustomShari
String[] lines = bundle_content.split("\n");
String newTitle = "";
if (lines[0].length() > 60) {
newTitle = lines[0].substring(0, 60) + "...";;
newTitle = lines[0].substring(0, 60) + '…';;
} else {
newTitle = lines[0];
}