Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ooni/probe-android into dev/desig…
Browse files Browse the repository at this point in the history
…n-update
  • Loading branch information
aanorbel committed Jan 15, 2024
2 parents 07869dc + cd58942 commit 6c0dd75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ public void onReceive(Context context, Intent intent) {
) {
return;
}
// If key is null, do nothing
if (key == null) {
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public TestRunBroadRequestReceiver(PreferenceManager preferenceManager, EventLis
public void onReceive(Context context, Intent intent) {
String key = intent.getStringExtra("key");
String value = intent.getStringExtra("value");
// If either key is null, do nothing
// If key is null, do nothing
if (key == null) {
return;
}
Expand Down

0 comments on commit 6c0dd75

Please sign in to comment.