Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions server-dest.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"ServerInstance": ".\\SQLExpress",
"UserName": null
}
"UserName": null,
"Password" : null
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Persist and load destination password from config

Adding Password in server-dest.conf implies this value is usable, but MainViewModel only reads/writes ServerInstance and UserName (ViewModels/MainViewModel.cs:157-159 and 184-186), so this key is ignored and removed on the next save. If a user sets UserName in config and expects this new Password field to be applied, DestinationConnection.Password stays null and BuildConnection dereferences it at Models/ConnectionModel.cs:126, which can fail at runtime instead of using the configured credential.

Useful? React with 👍 / 👎.

}