fix: file dialog defaults to home dir instead of /etc/ssl/certs #208
Reference in New Issue
Block a user
Delete Branch "fix/file-dialog-default-path"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes #203
Problem
The CA certificate file browser in the Silo database settings dialog hardcoded
/etc/ssl/certsas the fallback directory. When the cert input field was empty, the file dialog opened to a confusing system directory.Fix
Changed the fallback from
/etc/ssl/certstoos.path.expanduser("~")(user home directory). When a certificate path is already set, the dialog still opens to its parent directory.