mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 06:25:59 +01:00
config: ignore invalid paths in configPaths
This commit is contained in:
parent
a22e1174ee
commit
4bc3f9adbe
1 changed files with 1 additions and 1 deletions
|
@ -1456,7 +1456,7 @@ void CConfigManager::tick() {
|
|||
int err = stat(cf.c_str(), &fileStat);
|
||||
if (err != 0) {
|
||||
Debug::log(WARN, "Error at ticking config at %s, error %i: %s", cf.c_str(), err, strerror(err));
|
||||
return;
|
||||
continue;
|
||||
}
|
||||
|
||||
// check if we need to reload cfg
|
||||
|
|
Loading…
Reference in a new issue