We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace1045 commit 6fe716fCopy full SHA for 6fe716f
ui/src/main/java/io/snabble/sdk/ui/Keyguard.java
@@ -18,6 +18,7 @@
18
19
import java.util.concurrent.Executors;
20
21
+import io.snabble.sdk.Snabble;
22
import io.snabble.sdk.utils.Dispatch;
23
24
public class Keyguard {
@@ -111,6 +112,9 @@ private static void success(Callback callback) {
111
112
return;
113
}
114
115
+ // migrate key store stored values to rsa stored values
116
+ Snabble.getInstance().getPaymentCredentialsStore().maybeMigrateKeyStoreCredentials();
117
+
118
if (currentCallback != null) {
119
currentCallback.success();
120
currentCallback = null;
0 commit comments