We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 006915e commit 7e8cdceCopy full SHA for 7e8cdce
1 file changed
src/main/java/io/beanvortex/bitkip/controllers/BatchList.java
@@ -245,7 +245,8 @@ private List<DownloadModel> createDownloads(List<LinkModel> links) {
245
for (int i = 0; i < links.size(); i++) {
246
var lm = links.get(i);
247
var dm = new DownloadModel();
248
- if (credentials == null)
+ if (credentials == null && authenticatedCheck.isSelected()
249
+ && !usernameField.getText().isBlank() && !passwordField.getText().isBlank())
250
credentials = new Credentials(usernameField.getText(), passwordField.getText());
251
dm.setCredentials(credentials);
252
dm.setUri(lm.getUri());
0 commit comments