diff options
| author | 2022-07-25 17:08:20 +0200 | |
|---|---|---|
| committer | 2022-07-25 21:59:31 +0200 | |
| commit | 6a2dcc8b3d4ed0940e33d60fee701bcdb063eb6b (patch) | |
| tree | b70962e3698930c5b06d777bd912caa89a912391 /src/web_service/verify_user_jwt.cpp | |
| parent | yuzu_cmd: Fix compilation (diff) | |
| download | yuzu-6a2dcc8b3d4ed0940e33d60fee701bcdb063eb6b.tar.gz yuzu-6a2dcc8b3d4ed0940e33d60fee701bcdb063eb6b.tar.xz yuzu-6a2dcc8b3d4ed0940e33d60fee701bcdb063eb6b.zip | |
network, yuzu: Improve variable naming and style consistency
Diffstat (limited to 'src/web_service/verify_user_jwt.cpp')
| -rw-r--r-- | src/web_service/verify_user_jwt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web_service/verify_user_jwt.cpp b/src/web_service/verify_user_jwt.cpp index 3133dcbe2..2f294d378 100644 --- a/src/web_service/verify_user_jwt.cpp +++ b/src/web_service/verify_user_jwt.cpp | |||
| @@ -35,9 +35,9 @@ std::string GetPublicKey(const std::string& host) { | |||
| 35 | 35 | ||
| 36 | VerifyUserJWT::VerifyUserJWT(const std::string& host) : pub_key(GetPublicKey(host)) {} | 36 | VerifyUserJWT::VerifyUserJWT(const std::string& host) : pub_key(GetPublicKey(host)) {} |
| 37 | 37 | ||
| 38 | Network::VerifyUser::UserData VerifyUserJWT::LoadUserData(const std::string& verify_UID, | 38 | Network::VerifyUser::UserData VerifyUserJWT::LoadUserData(const std::string& verify_uid, |
| 39 | const std::string& token) { | 39 | const std::string& token) { |
| 40 | const std::string audience = fmt::format("external-{}", verify_UID); | 40 | const std::string audience = fmt::format("external-{}", verify_uid); |
| 41 | using namespace jwt::params; | 41 | using namespace jwt::params; |
| 42 | std::error_code error; | 42 | std::error_code error; |
| 43 | auto decoded = | 43 | auto decoded = |