Fixed Early Deletion Of Request
This commit is contained in:
parent
730728260b
commit
75c0b77ca7
@ -675,7 +675,6 @@ public class delegationServices {
|
||||
}
|
||||
if (requesttype == 10)
|
||||
{
|
||||
delegationTimer.DeleteTargetRequest(ClientID);
|
||||
System.out.println("Account Creation Request");
|
||||
Document DServer = dCollection.find(eq("clientid",ClientID)).first();
|
||||
String User = (String) DServer.get("User");
|
||||
@ -765,7 +764,7 @@ public class delegationServices {
|
||||
System.out.println("Account Creation Request");
|
||||
Document DServer = dCollection.find(eq("clientid",ClientID)).first();
|
||||
String User = (String) DServer.get("User");
|
||||
// String Password = (String) DServer.get("Password");
|
||||
String Password = (String) DServer.get("Password");
|
||||
// String Email = (String) DServer.get("Email");
|
||||
String FName = User;
|
||||
int min = 100000000;
|
||||
@ -788,7 +787,6 @@ public class delegationServices {
|
||||
new BasicDBObject().append("status", true));
|
||||
dCollection.updateOne(searchQuery, updateQuery);
|
||||
dCollection.updateOne(searchQuery, updateQuery1);
|
||||
delegationTimer.DeleteTargetRequest(ClientID);
|
||||
} catch (Exception exr) {
|
||||
System.out.println("Username Is Open");
|
||||
try {
|
||||
@ -818,6 +816,7 @@ public class delegationServices {
|
||||
createForm.append("Status", true);
|
||||
createForm.append("limited", true);
|
||||
createForm.append("Flagged", false);
|
||||
createForm.append("Password", Password);
|
||||
createForm.append("FName", FName);
|
||||
createForm.append("Entitlements", "NA");
|
||||
createForm.append("Path", "C:\\ObsidianCoreStudios\\Launcher\\AOTSK\\");
|
||||
|
Loading…
x
Reference in New Issue
Block a user