mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-11 21:01:45 +08:00
Fix QUIC decryption notice shown when not decrypting
This commit is contained in:
parent
233dfb611c
commit
5f83fb6143
@ -355,7 +355,8 @@ public class ConnectionOverview extends Fragment implements ConnectionDetailsAct
|
||||
mError.setText(R.string.decryption_info_no_rule);
|
||||
mError.setVisibility(View.VISIBLE);
|
||||
} else if((mConn.getDecryptionStatus() == ConnectionDescriptor.DecryptionStatus.NOT_DECRYPTABLE)
|
||||
&& mConn.l7proto.equals("QUIC")) {
|
||||
&& mConn.l7proto.equals("QUIC") &&
|
||||
CaptureService.isDecryptingTLS()) {
|
||||
mError.setTextColor(ContextCompat.getColor(context, R.color.warning));
|
||||
mError.setText(R.string.decrypt_quic_notice);
|
||||
mError.setVisibility(View.VISIBLE);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user