verified devices are not blocked

This commit is contained in:
Sorunome 2020-05-21 16:52:25 +02:00
parent eaefdb64ca
commit 10372a9dbe
No known key found for this signature in database
GPG Key ID: B19471D07FC9BE9C
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ abstract class _SignedKey {
String get ed25519Key => keys['ed25519:$identifier'];
bool get verified => directVerified || crossVerified;
bool get verified => (directVerified || crossVerified) && !blocked;
void setDirectVerified(bool v) {
_verified = v;