Merge pull request #177 from ryonakano/fix-add-account

SourceListView: Fix segfault when adding account
This commit is contained in:
Murilo Venturoso 2023-05-24 08:58:26 -03:00 committed by GitHub
commit ad93b100b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1083,7 +1083,7 @@ namespace EasySSH {
if(accounts[i] == null) {
continue;
}
var s_account = new Host();
var s_account = new Account();
s_account.name = accounts[i].name;
s_account.username = accounts[i].username;
s_account.password = accounts[i].password;