From 3fa779def33411a2ecb93c5f74ccc6adb85bd777 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 9 Nov 2025 17:56:22 -0500 Subject: [PATCH] fix: correct typo in login function parameter type --- src/OverteAuth.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OverteAuth.hpp b/src/OverteAuth.hpp index bebb82c..097594f 100644 --- a/src/OverteAuth.hpp +++ b/src/OverteAuth.hpp @@ -15,7 +15,7 @@ public: ~OverteAuth(); // Authenticate with username/password (Resource Owner Password Grant) - bool login(const std:string& username, const std::string& password, + bool login(const std::string& username, const std::string& password, const std::string& metaverseUrl = "https://mv.overte.org"); // Authenticate with browser OAuth flow (Authorization Code Grant) - RECOMMENDED