Finish v1.26.1(284)

This commit is contained in:
Valerio Castellana 2022-05-05 16:11:32 +02:00
commit 6b0d75fc60
2 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@ apply plugin: 'com.google.gms.google-services'
android { android {
def appVersionCode = 283 def appVersionCode = 284
def appVersionName = '1.26.0' def appVersionName = '1.26.1'
signingConfigs { signingConfigs {
release { release {

View File

@ -110,7 +110,7 @@ public class DialogScanArtView extends BaseDialogFragment implements DialogScanA
var filteredMtbColrList = mtbColrList; var filteredMtbColrList = mtbColrList;
if (mtbAart != null) { if (mtbAart != null && filteredMtbColrList != null) {
filteredMtbColrList = Stream.of(filteredMtbColrList) filteredMtbColrList = Stream.of(filteredMtbColrList)
.filter(x -> x.getCodMart().equalsIgnoreCase(mtbAart.getCodMart())) .filter(x -> x.getCodMart().equalsIgnoreCase(mtbAart.getCodMart()))
.toList(); .toList();