This commit is contained in:
Yoshi Askharoun
2025-09-08 11:54:54 -05:00
parent ca240e6b58
commit 5a1e18fa93
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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.";
}
+1 -1
View File
@@ -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 }
}