Adds version and key status prep on new accounts.
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user