Adds version and key status prep on new accounts.

This commit is contained in:
James Quinley
2022-06-20 11:48:30 -07:00
parent f9a71152b6
commit db59087288
2 changed files with 93 additions and 11 deletions

View File

@ -19,6 +19,11 @@ public class secureCalls {
}
public static void oneTimeKeyEmail (String email, String key, String user)
{
electronicMailHandler.otkEmail(email,key,user);
final Runnable runnable = new Runnable() {
public void run() {
electronicMailHandler.otkEmail(email,key,user);
}
};
runnable.run();
}
}