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 {
minSdkVersion 19
targetSdkVersion 29
versionCode 369
versionName "2.35.5"
versionCode 370
versionName "2.35.6"
multiDexEnabled true
renderscriptTargetApi 28 as int
renderscriptSupportModeEnabled true

View File

@ -7,4 +7,5 @@ Changed:
Fixed:
- Some URLs not clickable
- 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() {
return content.replaceAll("\\p{C}", "?");
return content;
}
public void setContent(Context context, String content) {