Skip to content

Commit

Permalink
bugfix: missing break statement after SMB feature integration prevent…
Browse files Browse the repository at this point in the history
…ed XRE connection due to fields validation
  • Loading branch information
pgp committed Mar 3, 2019
1 parent 501ea95 commit 86701f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
minSdkVersion 19
targetSdkVersion 28
multiDexEnabled true
versionCode 102190302
versionCode 102190303
versionName "1.0.2-alpha"
externalNativeBuild {
cmake {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ and launches error dialogs (host key not found/not valid and auth error -> provi
// Integer.valueOf(xreServerPort.getText().toString()),
xreRemotePath.getText().toString()
);
break;
case 4: // SMB
if (!basicNonEmptyValidation(smbUser,smbDomain,smbHost,smbPort,smbPassword)) return; // password cannot be empty (no pubkey authentication for SMB)
path = new SmbRemotePathContent(
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/it/pgp/xfiles/utils/FavoritesList.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import java.util.TreeSet;

/**
* TODO will replace {@link it.pgp.xfiles.sftpclient.AuthDataWithFavorites} and {@link it.pgp.xfiles.smbclient.SmbAuthDataWithFavorites}
* replaces {@link it.pgp.xfiles.sftpclient.AuthDataWithFavorites} and {@link it.pgp.xfiles.smbclient.SmbAuthDataWithFavorites}
*/

public class FavoritesList<T> {
Expand Down

0 comments on commit 86701f3

Please sign in to comment.