Some fixes

This commit is contained in:
Thomas 2022-06-29 19:20:58 +02:00
parent f8aeada68f
commit a5c3da1491
2 changed files with 4 additions and 2 deletions

View File

@ -9,7 +9,7 @@ android {
defaultConfig {
minSdk 21
targetSdk 31
versionCode 391
versionCode 392
versionName "3.0.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

View File

@ -126,7 +126,9 @@ public class TimelineHelper {
}
}
}
statuses.removeAll(statusesToRemove);
if (statuses != null) {
statuses.removeAll(statusesToRemove);
}
return statuses;
}