Skip to content

Commit

Permalink
Compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuele-f committed Sep 27, 2022
1 parent 785baee commit ef2c295
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public void onMitmGetCaCertificateResult(@Nullable String ca_pem) {

@Override
public void onMitmServiceConnect() {
context ctx = getContext();
Context ctx = getContext();
if(ctx == null)
return;

Expand All @@ -235,7 +235,7 @@ public void onMitmServiceConnect() {

@Override
public void onMitmServiceDisconnect() {
context ctx = getContext();
Context ctx = getContext();
if(ctx == null)
return;

Expand Down

0 comments on commit ef2c295

Please sign in to comment.