Skip to content

Commit

Permalink
#4354 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
abdulroufsidhu authored Feb 10, 2025
1 parent 95f567b commit 8e98ac7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ public Dialog onCreateDialog(Bundle savedInstanceState) {
ExtensionsKt.makeRequired(connectionTIL);
ExtensionsKt.makeRequired(ipTIL);
ExtensionsKt.makeRequired(usernameTIL);
ExtensionsKt.makeRequired(passwordTIL);

conName.addTextChangedListener(
new SimpleTextWatcher() {
Expand Down Expand Up @@ -347,7 +346,7 @@ public void afterTextChanged(@NonNull Editable s) {
SmbFile smbFile;
String domaind = domain.getText().toString();
if (chkSmbAnonymous.isChecked()
|| (TextUtils.isEmpty(user.getText()) && TextUtils.isEmpty(pass.getText())))
|| (TextUtils.isEmpty(user.getText()) && TextUtils.isEmpty(pass.getText() )))
smbFile = createSMBPath(new String[] {ipa, "", "", domaind, sShare}, true, false);
else {
String useraw = user.getText().toString();
Expand Down

0 comments on commit 8e98ac7

Please sign in to comment.