mirror of
https://github.com/ZuneDev/ZuneModdingHelper.git
synced 2026-07-27 13:12:21 -07:00
oops
This commit is contained in:
@@ -14,7 +14,7 @@ public class VideoSyncModFactory : DIModFactoryBase<VideoSyncMod>
|
||||
Id = nameof(VideoSyncMod),
|
||||
Title = "Fix Video Sync",
|
||||
Author = "ส็็็Codix#4833 & sylvathemoth",
|
||||
Version = new(2, 1),
|
||||
Version = new(2, 2),
|
||||
Description = "Resolves \"Error C00D11CD\" when attempting to sync video to a Zune device using Windows 10 1607 (Anniversary Update) or newer.",
|
||||
};
|
||||
}
|
||||
@@ -27,7 +27,7 @@ public class VideoSyncMod(ModMetadata metadata, IModCoreConfig modConfig) : Mod(
|
||||
|
||||
public override async Task<string?> Apply()
|
||||
{
|
||||
if (OperatingSystem.IsWindowsVersionAtLeast(10, 0, 14393))
|
||||
if (!OperatingSystem.IsWindowsVersionAtLeast(10, 0, 14393))
|
||||
{
|
||||
return "This version of Windows does not require a fix for syncing video.";
|
||||
}
|
||||
|
||||
@@ -444,5 +444,5 @@ public partial class WebservicesMod(ModMetadata metadata, IModCoreConfig modConf
|
||||
[GeneratedRegex(@"(?<ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\s+(?<name>[\w.-]+?)(\s+|$)")]
|
||||
private static partial Regex HostsEntryRegex();
|
||||
|
||||
private enum ApplicationMethod { None, BinaryPatch, HostsEntries}
|
||||
private enum ApplicationMethod { None, BinaryPatch, HostsEntries }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user