Fix minor cryptography typo

This commit is contained in:
Arnaud Ringenbach
2022-03-09 11:14:24 +01:00
parent 071a7c3b83
commit 75a8c4e62c

View File

@@ -364,24 +364,24 @@ TableViewSectionsDelegate>
[sections addObject:crossSigningSection];
// Cryptograhpy
// Cryptography
Section *cryptograhpySection = [Section sectionWithTag:SECTION_CRYPTOGRAPHY];
cryptograhpySection.headerTitle = [VectorL10n securitySettingsCryptography];
Section *cryptographySection = [Section sectionWithTag:SECTION_CRYPTOGRAPHY];
cryptographySection.headerTitle = [VectorL10n securitySettingsCryptography];
if (RiotSettings.shared.settingsSecurityScreenShowCryptographyInfo)
{
[cryptograhpySection addRowWithTag:CRYPTOGRAPHY_INFO];
[cryptographySection addRowWithTag:CRYPTOGRAPHY_INFO];
}
if (RiotSettings.shared.settingsSecurityScreenShowCryptographyExport && !isSecureBackupRequired)
{
[cryptograhpySection addRowWithTag:CRYPTOGRAPHY_EXPORT];
[cryptographySection addRowWithTag:CRYPTOGRAPHY_EXPORT];
}
if (cryptograhpySection.rows.count)
if (cryptographySection.rows.count)
{
[sections addObject:cryptograhpySection];
[sections addObject:cryptographySection];
}
#ifdef CROSS_SIGNING_AND_BACKUP_DEV