lib: fix missing / in path

This commit is contained in:
Vaxry 2024-04-08 10:21:12 +01:00
parent 818d8c4b69
commit 95cd9376e8
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ static bool pathAccessible(const std::string& path) {
} }
static bool themeAccessible(const std::string& path) { static bool themeAccessible(const std::string& path) {
return pathAccessible(path + "/manifest.hl") || pathAccessible(path + "manifest.toml"); return pathAccessible(path + "/manifest.hl") || pathAccessible(path + "/manifest.toml");
} }
static std::string getFirstTheme(PHYPRCURSORLOGFUNC logfn) { static std::string getFirstTheme(PHYPRCURSORLOGFUNC logfn) {