From 788353120bd3ac55c023070c6e452681afdbee04 Mon Sep 17 00:00:00 2001 From: Sorunome Date: Thu, 21 May 2020 16:55:30 +0200 Subject: [PATCH] accidental inifnite recursion --- lib/src/utils/device_keys_list.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/utils/device_keys_list.dart b/lib/src/utils/device_keys_list.dart index ca0d71da..1dcd71de 100644 --- a/lib/src/utils/device_keys_list.dart +++ b/lib/src/utils/device_keys_list.dart @@ -169,7 +169,7 @@ abstract class _SignedKey { continue; } - if (key.verified) { + if (key.directVerified) { return true; // we verified this key and it is valid...all checks out! } // or else we just recurse into that key and chack if it works out