Fix derivation of RRP in RefreshAttributesJob.
This commit is contained in:
parent
542374aee0
commit
0ce75b21ee
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ public class RefreshAttributesJob extends BaseJob {
|
|||
String registrationLockV2 = null;
|
||||
SvrValues svrValues = SignalStore.svr();
|
||||
int pniRegistrationId = RegistrationRepository.getPniRegistrationId();
|
||||
String recoveryPassword = svrValues.getRecoveryPassword();
|
||||
String recoveryPassword = svrValues.hasPin() ? svrValues.getMasterKey().deriveRegistrationRecoveryPassword() : null;
|
||||
|
||||
if (svrValues.isRegistrationLockEnabled()) {
|
||||
registrationLockV2 = svrValues.getRegistrationLockToken();
|
||||
|
|
Loading…
Add table
Reference in a new issue