diff options
-rw-r--r-- | src/util/system.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/system.cpp b/src/util/system.cpp index 72b37b9187..d9e23199ec 100644 --- a/src/util/system.cpp +++ b/src/util/system.cpp @@ -1202,6 +1202,9 @@ int64_t GetStartupTime() fs::path AbsPathForConfigVal(const fs::path& path, bool net_specific) { + if (path.is_absolute()) { + return path; + } return fs::absolute(path, GetDataDir(net_specific)); } |