Fix 2 NPEs reported on Google Play

This commit is contained in:
ByteHamster 2022-06-21 19:34:19 +02:00
parent a5ff913e24
commit 72cd015480
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());