mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-17 06:52:18 +01:00
Boards manager, nightly core support: missing negation on String.empty() made check report an opposite result
This commit is contained in:
parent
03a66b1035
commit
0ad73ebed3
@ -91,7 +91,7 @@ public class DownloadableContributionsDownloader {
|
||||
|
||||
String algo = checksum.split(":")[0];
|
||||
|
||||
return algo != null && algo.isEmpty();
|
||||
return algo != null && !algo.isEmpty();
|
||||
}
|
||||
|
||||
public void download(URL url, File tmpFile, Progress progress, String statusText) throws Exception {
|
||||
|
Loading…
x
Reference in New Issue
Block a user