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 4720555 commit 785baee
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 785baee

Please sign in to comment.