show all keys for SelectPublicKeyFragment

This commit is contained in:
Vincent Breitmoser
2018-06-29 23:39:33 +02:00
parent a2eb6349b8
commit 471aa34d38

View File

@@ -81,7 +81,7 @@ public class SelectPublicKeyFragment extends RecyclerFragment<KeyChoiceAdapter>
@NonNull
private List<UnifiedKeyInfo> loadSortedUnifiedKeyInfo() {
List<UnifiedKeyInfo> keyInfos = keyRepository.getAllUnifiedKeyInfoWithSecret();
List<UnifiedKeyInfo> keyInfos = keyRepository.getAllUnifiedKeyInfo();
Collections.sort(keyInfos, sortKeysByPreselectionComparator());
return keyInfos;
}