mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 11:05:58 +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);
|
int err = stat(cf.c_str(), &fileStat);
|
||||||
if (err != 0) {
|
if (err != 0) {
|
||||||
Debug::log(WARN, "Error at ticking config at %s, error %i: %s", cf.c_str(), err, strerror(err));
|
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
|
// check if we need to reload cfg
|
||||||
|
|
Loading…
Reference in a new issue