Skip to content

Commit 3cd9356

Browse files
committed
Fix building for Android.
1 parent 650c3d9 commit 3cd9356

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

td/telegram/SendCodeHelper.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,8 @@ SendCodeHelper::AuthenticationCodeInfo SendCodeHelper::get_sent_authentication_c
229229
}
230230
if ((code_type->flags_ & telegram_api::auth_sentCodeTypeFirebaseSms::PLAY_INTEGRITY_NONCE_MASK) != 0) {
231231
return AuthenticationCodeInfo{AuthenticationCodeInfo::Type::FirebaseAndroidPlayIntegrity, code_type->length_,
232-
<<<<<<< HEAD
233-
code_type->play_integrity_nonce_.as_slice().str()};
234-
=======
235-
std::move(nonce), 0, code_type->play_integrity_project_id_};
236-
>>>>>>> 1062f39ce (Add firebaseDeviceVerificationParametersPlayIntegrity.cloud_project_number.)
232+
code_type->play_integrity_nonce_.as_slice().str(), 0,
233+
code_type->play_integrity_project_id_};
237234
}
238235
#elif TD_DARWIN
239236
if ((code_type->flags_ & telegram_api::auth_sentCodeTypeFirebaseSms::RECEIPT_MASK) != 0) {

0 commit comments

Comments
 (0)