mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Always attempt properties upgrade
This commit is contained in:
parent
e3e019e3f7
commit
c20af38a2e
@ -23,7 +23,14 @@ namespace Observatory
|
||||
{
|
||||
if (Properties.Core.Default.CoreVersion != version)
|
||||
{
|
||||
if (Properties.Core.Default.CoreVersion != string.Empty) Properties.Core.Default.Upgrade();
|
||||
try
|
||||
{
|
||||
Properties.Core.Default.Upgrade();
|
||||
}
|
||||
catch
|
||||
{
|
||||
// Silently ignore properties upgrade failure.
|
||||
}
|
||||
Properties.Core.Default.CoreVersion = version;
|
||||
Properties.Core.Default.Save();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user