Skip to content

Commit

Permalink
Bug fix reading in cfg when no time set for restart
Browse files Browse the repository at this point in the history
  • Loading branch information
winglessraven committed Sep 3, 2020
1 parent 0b6cfa7 commit 463c74d
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 7 deletions.
Binary file modified Dead Matter Server Manager/.vs/Dead Matter Server Manager/v16/.suo
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,14 @@ private void CheckAppData()
if (s.StartsWith("TimerRestartTime"))
{
String[] temp = s.Split('=');
restartServerTime.Text = Convert.ToString(Convert.ToDouble(temp[1]) * 60);
try
{
restartServerTime.Text = Convert.ToString(Convert.ToDouble(temp[1]) * 60);
}
catch
{
//do nowt
}
}

if (s.StartsWith("MinsTimerRestartTime"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.12.0")]
[assembly: AssemblyFileVersion("1.6.12.0")]
[assembly: AssemblyVersion("1.6.13.0")]
[assembly: AssemblyFileVersion("1.6.13.0")]
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -529,15 +529,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:Dead Matter Server Manager"
"ProductCode" = "8:{FEC110B2-AA52-42AB-B5BD-AFB7045DF93F}"
"PackageCode" = "8:{EF4A9CAD-3A2D-478B-A761-A9AE6C721B90}"
"ProductCode" = "8:{EDFCAA39-1F4E-4966-96CF-6061F15E0523}"
"PackageCode" = "8:{B92DE7C4-74A1-4F65-8ACD-3EAFEB0034E6}"
"UpgradeCode" = "8:{BC345328-E944-4F2F-9559-E95043070B11}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:1.6.12"
"ProductVersion" = "8:1.6.13"
"Manufacturer" = "8:winglessraven"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
Expand All @@ -546,7 +546,7 @@
"ARPCONTACT" = "8:Dave Ross"
"Keywords" = "8:"
"ARPCOMMENTS" = "8:Dead Matter Server Manager"
"ARPURLINFOABOUT" = "8:www.winglessraven.com"
"ARPURLINFOABOUT" = "8:www.winglessraven.com/DMSM"
"ARPPRODUCTICON" = "8:_06460ADA370849B79DB9F36DEE9D1A94"
"ARPIconIndex" = "3:0"
"SearchPath" = "8:"
Expand Down
Binary file not shown.

0 comments on commit 463c74d

Please sign in to comment.