Skip to content

Commit

Permalink
Fix building for Android.
Browse files Browse the repository at this point in the history
  • Loading branch information
levlam committed Jul 5, 2024
1 parent 650c3d9 commit 3cd9356
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions td/telegram/SendCodeHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,8 @@ SendCodeHelper::AuthenticationCodeInfo SendCodeHelper::get_sent_authentication_c
}
if ((code_type->flags_ & telegram_api::auth_sentCodeTypeFirebaseSms::PLAY_INTEGRITY_NONCE_MASK) != 0) {
return AuthenticationCodeInfo{AuthenticationCodeInfo::Type::FirebaseAndroidPlayIntegrity, code_type->length_,
<<<<<<< HEAD
code_type->play_integrity_nonce_.as_slice().str()};
=======
std::move(nonce), 0, code_type->play_integrity_project_id_};
>>>>>>> 1062f39ce (Add firebaseDeviceVerificationParametersPlayIntegrity.cloud_project_number.)
code_type->play_integrity_nonce_.as_slice().str(), 0,
code_type->play_integrity_project_id_};
}
#elif TD_DARWIN
if ((code_type->flags_ & telegram_api::auth_sentCodeTypeFirebaseSms::RECEIPT_MASK) != 0) {
Expand Down

0 comments on commit 3cd9356

Please sign in to comment.