diff --git a/AutoRegistrator/Unitsyncer.cs b/AutoRegistrator/Unitsyncer.cs index c498223bc..0a9c81d10 100644 --- a/AutoRegistrator/Unitsyncer.cs +++ b/AutoRegistrator/Unitsyncer.cs @@ -3,6 +3,7 @@ using System.Diagnostics; using System.IO; using System.Linq; +using System.Runtime.ExceptionServices; using MonoTorrent.Common; using PlasmaShared; using ZkData; @@ -87,6 +88,7 @@ public List Scan() } + [HandleProcessCorruptedStateExceptions] private static ResourceInfo Register(UnitSync unitsync, ResourceInfo resource) { Trace.TraceInformation("UnitSyncer: registering {0}", resource.Name); diff --git a/Shared/PlasmaShared/GlobalConst.cs b/Shared/PlasmaShared/GlobalConst.cs index 9f4001492..ec5429859 100644 --- a/Shared/PlasmaShared/GlobalConst.cs +++ b/Shared/PlasmaShared/GlobalConst.cs @@ -266,7 +266,7 @@ public static void OverrideContentServiceClient(IContentServiceClient client) } - public static string UnitSyncEngine = "105.1.1-1485-g78f9a2c"; + public static string UnitSyncEngine = "unitsync"; public static int SteamContributionJarID = 2; public static Dictionary DlcToKudos = new Dictionary() { { 842950, 100 }, { 842951, 250 }, { 842952, 500 } };