Fix #442 - question mark issue

This commit is contained in:
Thomas 2020-06-07 10:10:38 +02:00
parent 7a1a877fbc
commit 117dd49990
3 changed files with 5 additions and 4 deletions

View File

@ -6,8 +6,8 @@ android {
defaultConfig { defaultConfig {
minSdkVersion 19 minSdkVersion 19
targetSdkVersion 29 targetSdkVersion 29
versionCode 369 versionCode 370
versionName "2.35.5" versionName "2.35.6"
multiDexEnabled true multiDexEnabled true
renderscriptTargetApi 28 as int renderscriptTargetApi 28 as int
renderscriptSupportModeEnabled true renderscriptSupportModeEnabled true

View File

@ -7,4 +7,5 @@ Changed:
Fixed: Fixed:
- Some URLs not clickable - Some URLs not clickable
- Empty home timeline - Empty home timeline
- Some crashes when scrolling - Some crashes when scrolling
- Question mark bug

View File

@ -1314,7 +1314,7 @@ public class Status implements Parcelable {
} }
public String getContent() { public String getContent() {
return content.replaceAll("\\p{C}", "?"); return content;
} }
public void setContent(Context context, String content) { public void setContent(Context context, String content) {