Add compile_commands alias

This commit is contained in:
Jacob 2024-02-01 20:58:21 +01:00
parent 6f7cc340c3
commit dd24ac8fb9
2 changed files with 2 additions and 2 deletions

1
compile_commands.json Symbolic link
View file

@ -0,0 +1 @@
build/compile_commands.json

View file

@ -1096,8 +1096,7 @@ leet::User::Profile leet::getUserData(const leet::User::credentialsResponse& res
return profile;
}
const std::string API { leet::getAPI("/_matrix/client/v3/profile/" + profile.userID) };
const std::string Output = invokeRequest_Get(API);
const std::string Output = invokeRequest_Get(leet::getAPI("/_matrix/client/v3/profile/" + profile.userID));
nlohmann::json reqOutput;