aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/definitions/auth_data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csapi/definitions/auth_data.cpp')
-rw-r--r--lib/csapi/definitions/auth_data.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/csapi/definitions/auth_data.cpp b/lib/csapi/definitions/auth_data.cpp
index 006b8c7e..f40a3a90 100644
--- a/lib/csapi/definitions/auth_data.cpp
+++ b/lib/csapi/definitions/auth_data.cpp
@@ -15,11 +15,10 @@ void JsonObjectConverter<AuthenticationData>::dumpTo(
}
void JsonObjectConverter<AuthenticationData>::fillFrom(
- QJsonObject jo, AuthenticationData& result)
+ QJsonObject jo, AuthenticationData& result)
{
fromJson(jo.take("type"_ls), result.type);
fromJson(jo.take("session"_ls), result.session);
fromJson(jo, result.authInfo);
}
-