You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MessageBox.Show("You're currently in emulated login mode. Certain functionality will be disable as it requires real login.","Emulated Login",MessageBoxButtons.OK,MessageBoxIcon.Warning);
MessageBox.Show("Identifier too long, maximum 92 characters (though it's actually 100 but devtool reserved the other 8)","Bad Identifier",MessageBoxButtons.OK,MessageBoxIcon.Error);
211
+
return;
212
+
}
213
+
// Check if the date exceeded the current date
214
+
if(overrideTS.Checked)
215
+
{
216
+
DateTimemanualDate=newDateTime(
217
+
dateTS.Value.Year,
218
+
dateTS.Value.Month,
219
+
dateTS.Value.Day,
220
+
timeTS.Value.Hour,
221
+
timeTS.Value.Minute,
222
+
timeTS.Value.Second,
223
+
timeTS.Value.Millisecond);
224
+
if(manualDate>DateTime.UtcNow)
225
+
{
226
+
MessageBox.Show("Overridden date cannot exceed your system date","Bad Date",MessageBoxButtons.OK,MessageBoxIcon.Error);
227
+
return;
228
+
}
229
+
}
230
+
}
231
+
#if DEBUG
232
+
// Check if we're in emulated mode
233
+
if(isEmulatedMode())
234
+
{
235
+
MessageBox.Show("In non-emulated mode, data would be processed to be sent","Valid Data",MessageBoxButtons.OK,MessageBoxIcon.Information);
0 commit comments