use correct filtered list for key selection in RemoteSelectidentityPresenter

This commit is contained in:
Vincent Breitmoser
2018-07-02 17:29:56 +02:00
parent b7dcb5d98d
commit 7ab2161cba

View File

@@ -185,7 +185,7 @@ class RemoteSelectIdentityKeyPresenter {
} }
void onKeyItemClick(int position) { void onKeyItemClick(int position) {
selectedMasterKeyId = keyInfoData.get(position).master_key_id(); selectedMasterKeyId = getFilteredKeyInfo().get(position).master_key_id();
view.highlightKey(position); view.highlightKey(position);
} }