!126 Mix pin set bugfix

Merge pull request !126 from zhanghaima/master
This commit is contained in:
openharmony_ci 2022-02-15 09:56:32 +00:00 committed by Gitee
commit 25ab786aff
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 5 additions and 1 deletions

View File

@ -104,6 +104,10 @@
{
"name": "ohos.permission.DISTRIBUTED_DATASYNC"
},
{
"name": "ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS_EXTENSION",
"reason": "Switch system account."
},
{
"name": "ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
},

View File

@ -157,7 +157,7 @@ export default class PasswordInputController extends BaseSettingsController {
}
// Check illegal character
if (!this.checker.isContainIllegalCharacter(pwd)) {
if (this.checker.isContainIllegalCharacter(pwd)) {
return $r('app.string.password_illegal_character')
}