make image smaller

This commit is contained in:
stom79 2019-02-23 09:42:10 +01:00
parent 57777563bb
commit cb1f86ae11
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ public class CustomSharingActivity extends BaseActivity implements OnCustomShari
if( emojis == null || emojis.size() == 0)
return content;
for (Emojis emoji : emojis) {
content = content.replaceAll(":"+emoji.getShortcode()+":","<img src='"+emoji.getUrl()+"' width=30 alt='"+emoji.getShortcode()+"'/>");
content = content.replaceAll(":"+emoji.getShortcode()+":","<img src='"+emoji.getUrl()+"' width=20 alt='"+emoji.getShortcode()+"'/>");
}
return content;
}