oops again

This commit is contained in:
Bitl 2021-09-27 14:26:27 -07:00
parent aff1d5695b
commit 10ede0a7fa
1 changed files with 20 additions and 23 deletions

View File

@ -657,8 +657,6 @@ public class GlobalFuncs
throw clientNotFoundEX; throw clientNotFoundEX;
} }
if (GlobalVars.AdminMode)
{
string ClientMD5 = File.Exists(path + ClientName) ? SecurityFuncs.GenerateMD5(path + ClientName) : ""; string ClientMD5 = File.Exists(path + ClientName) ? SecurityFuncs.GenerateMD5(path + ClientName) : "";
if (!string.IsNullOrWhiteSpace(ClientMD5)) if (!string.IsNullOrWhiteSpace(ClientMD5))
@ -682,10 +680,9 @@ public class GlobalFuncs
IOException clientNotFoundEX = new IOException("Could not find script file for MD5 generation."); IOException clientNotFoundEX = new IOException("Could not find script file for MD5 generation.");
throw clientNotFoundEX; throw clientNotFoundEX;
} }
}
string desc = "This client information file for '" + GlobalVars.UserConfiguration.SelectedClient + string desc = "This client information file for '" + GlobalVars.UserConfiguration.SelectedClient +
"' was pre-generated by Novetus for your convienence. If you experience any issues with the default settings, load this clientinfo.nov file into the Client SDK."; "' was pre-generated by Novetus for your convienence. You will need to load and save this clientinfo.nov file into the Client SDK.";
DefaultClientInfo.Description = desc; DefaultClientInfo.Description = desc;