From 210986a7f065496f0116c42427459daf39378fa0 Mon Sep 17 00:00:00 2001 From: Paius Emanuel-Andrei Date: Sat, 13 Nov 2021 14:55:14 +0200 Subject: [PATCH] Fixed Drive Letters for Windows Platform --- Wabbajack.Paths/AbsolutePath.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wabbajack.Paths/AbsolutePath.cs b/Wabbajack.Paths/AbsolutePath.cs index b1f5f929..4daa451e 100644 --- a/Wabbajack.Paths/AbsolutePath.cs +++ b/Wabbajack.Paths/AbsolutePath.cs @@ -37,7 +37,7 @@ public readonly struct AbsolutePath : IPath, IComparable, IEquatab } private static readonly HashSet - DriveLetters = new("ABCDEFGJIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"); + DriveLetters = new("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"); private static PathFormat DetectPathType(string path) {