Skip to content

Commit 46fbe07

Browse files
committed
really
1 parent e2ea19d commit 46fbe07

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# v1.4.7
22
- Previews now use CCRenderTexture to optimize performance on large amounts of objects. (New setting: Pre-Render Object Capacity & Pre-Render Full View)
33
- Replaced GDAuth with argon
4+
- Removed ProfilePage hook due to stability issues
45
# v1.4.6
56
- Sapphire SDK support
67
# v1.4.5

src/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ class $modify(ObjectBypass, EditorUI) {
281281
}
282282
};
283283

284+
#if 0
284285
#include <Geode/modify/ProfilePage.hpp>
285286

286287
class $modify(ProfilePage) {
@@ -428,6 +429,7 @@ class $modify(ProfilePage) {
428429
}
429430
}
430431
};
432+
#endif
431433

432434
#include <Geode/modify/EditorUI.hpp>
433435
class $modify(EditorUI) {

src/ui/auth/AuthMenu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ void AuthMenu::genAuthToken(AuthMethod method, std::string token, bool showFLAle
200200
auto myjson = matjson::Value();
201201
myjson.set("token", token);
202202
if (method == AuthMethod::Argon) {
203-
myjson.set("username", GJAccountManager::get()->m_username);
203+
myjson.set("username", fmt::format("{}", GJAccountManager::get()->m_username));
204204
myjson.set("account_id", GJAccountManager::get()->m_accountID);
205205
}
206206
req.bodyJSON(myjson);

0 commit comments

Comments
 (0)