Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
muriloventuroso committed Jul 24, 2018
1 parent 6b66f04 commit 4e65c90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Widgets/TerminalBox.vala
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace EasySSH {
if(dataHost.port != ""){
builder.append(" -p " + dataHost.port);
}
if(dataHost.identity_file != "") {
if(dataHost.identity_file != "" && dataHost.identity_file != null) {
builder.append(" -i " + dataHost.identity_file);
}
string[] lines = dataHost.tunnels.split (",");
Expand Down

0 comments on commit 4e65c90

Please sign in to comment.