Skip to content

Commit 9e76182

Browse files
committed
Formatted code
1 parent 9656b4c commit 9e76182

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

auth/src/desktop/rpcs/auth_request.cc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,12 @@ AuthRequest::AuthRequest(::firebase::App& app, const char* schema,
6262
::firebase::internal::FunctionRegistry* registry = app.function_registry();
6363
if (registry) {
6464
Future<std::string> app_check_future;
65-
bool succeeded = registry->CallFunction(
66-
::firebase::internal::FnAppCheckGetTokenAsync, &app, nullptr,
67-
&app_check_future);
65+
bool succeeded =
66+
registry->CallFunction(::firebase::internal::FnAppCheckGetTokenAsync,
67+
&app, nullptr, &app_check_future);
6868
if (succeeded && app_check_future.status() != kFutureStatusInvalid) {
69-
const std::string* token = app_check_future.Await(kAppCheckTokenTimeoutMs);
69+
const std::string* token =
70+
app_check_future.Await(kAppCheckTokenTimeoutMs);
7071
if (token && app_check_future.error() == 0 && !token->empty()) {
7172
add_header("X-Firebase-AppCheck", token->c_str());
7273
}

0 commit comments

Comments
 (0)