# HG changeset patch # User Olaf Wintermann # Date 1765134033 -3600 # Node ID 3da24640513a3a39e0febf91a07942432e2591d7 # Parent dde28a806552854364b9e4089bff3e16b41a755f fix settings dialog doesn't open when there is no .dav/config.xml file diff -r dde28a806552 -r 3da24640513a application/config.c --- a/application/config.c Mon Nov 10 21:52:51 2025 +0100 +++ b/application/config.c Sun Dec 07 20:00:33 2025 +0100 @@ -170,7 +170,7 @@ switch(errno) { case ENOENT: { davconfig = dav_config_new(NULL); - return NULL; + return davconfig; } default: { perror("Cannot load config.xml");