Skip to content

Commit

Permalink
fix(logger): explicit cast to fs::patj
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed Nov 11, 2023
1 parent d49a5f0 commit 505095b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.21)
project(venmic LANGUAGES CXX VERSION 2.1.0)
project(venmic LANGUAGES CXX VERSION 2.1.1)

# --------------------------------------------------------------------------------------------------------
# Library options
Expand Down
2 changes: 1 addition & 1 deletion src/logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace vencord

if (auto home = std::getenv("HOME"))
{
rtn = home / ".local" / "state";
rtn = fs::path{home} / ".local" / "state";
}

if (auto state_home = std::getenv("XDG_STATE_HOME"))
Expand Down

0 comments on commit 505095b

Please sign in to comment.