Merge pull request #5946 from ByteHamster/fix-crashes

Fix 2 NPEs reported on Google Play
This commit is contained in:
ByteHamster 2022-06-22 07:21:17 +02:00 committed by GitHub
commit a5d744f410
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -185,6 +185,9 @@ public class FeedInfoFragment extends Fragment implements Toolbar.OnMenuItemClic
@Override
public void onConfigurationChanged(@NonNull Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if (header == null || infoContainer == null) {
return;
}
int horizontalSpacing = (int) getResources().getDimension(R.dimen.additional_horizontal_spacing);
header.setPadding(horizontalSpacing, header.getPaddingTop(), horizontalSpacing, header.getPaddingBottom());
infoContainer.setPadding(horizontalSpacing, infoContainer.getPaddingTop(),

View File

@ -132,7 +132,7 @@ public class DownloadServiceNotification {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < statuses.size(); i++) {
if (statuses.get(i).isSuccessful()) {
if (statuses.get(i) == null || statuses.get(i).isSuccessful()) {
continue;
}
sb.append("").append(statuses.get(i).getTitle());