diff options
author | cyberta <cyberta@riseup.net> | 2022-07-18 21:57:07 +0000 |
---|---|---|
committer | cyberta <cyberta@riseup.net> | 2022-07-18 21:57:07 +0000 |
commit | abd8c8d06f01cc5b794a18779c2ea36b9317b4e3 (patch) | |
tree | 3bf4274594bc45c879093adbab58c2ec7a142146 /app/src/notFatweb/java/se/leap | |
parent | f90e72fb3e90d561a433278f251ee27297b42001 (diff) | |
parent | 6ad47f6665312cfbc5c9b9e9bae1088d91b8dc99 (diff) |
Merge branch 'eip-service.json_updates' into 'master'
Fix auto-check issues after successful connection attempt
Closes #9093
See merge request leap/bitmask_android!197
Diffstat (limited to 'app/src/notFatweb/java/se/leap')
-rw-r--r-- | app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java b/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java index 157f04fe..02a830ca 100644 --- a/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java +++ b/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java @@ -1,6 +1,10 @@ package se.leap.bitmaskclient.appUpdate; import android.content.Context; +import android.os.Bundle; + +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; /** * DownloadServiceCommand is only implemented in Fatweb builds @@ -16,4 +20,8 @@ public class DownloadServiceCommand { public static void execute(Context context, String action) { // DO NOTHING. } + + public static void execute(@NonNull Context context, @NonNull String action, @Nullable Bundle parameters) { + // DO NOTHING. + } } |