Fix for issue #199 #200
Reference in New Issue
Block a user
Delete Branch "v4-rc"
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?
This fixes the issue when there is no ini file present during first run and installing klipper.
The root cause is that the globals are read prior to creation of the ini file, but the code that initializes the globals is looking for the ini file via the read_kiauh_ini function. So we create the ini there on-demand if it's missing
Thanks. This indeed looks like a better approach!