mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-17 23:05:03 -05:00
Fix AcoustID issue: NoSuchElementException: No Value Present
@see https://www.filebot.net/forums/viewtopic.php?f=6&t=3818
This commit is contained in:
parent
6180866b89
commit
791fa79658
@ -175,7 +175,7 @@ public class AcoustIDClient implements MusicIdentificationService {
|
||||
debug.log(Level.WARNING, e.getMessage(), e);
|
||||
return null;
|
||||
}
|
||||
}).filter(Objects::nonNull).sorted(new MostFieldsNotNull()).findFirst().get();
|
||||
}).filter(Objects::nonNull).sorted(new MostFieldsNotNull()).findFirst().orElse(null);
|
||||
}
|
||||
|
||||
return null;
|
||||
|
Loading…
Reference in New Issue
Block a user