Nullify IIOManager

This commit is contained in:
Jordan Dominion
2023-12-18 14:18:01 -05:00
parent 49809d690c
commit ca94ce577e
2 changed files with 2 additions and 4 deletions
@@ -28,7 +28,7 @@
/// <summary>
/// The base path for the app settings configuration files.
/// </summary>
public string? AppSettingsBasePath { get; set; }
public string AppSettingsBasePath { get; set; } = "UNINITIALIZED"; // this is set in a hacky way in ServerFactory
/// <summary>
/// Coerce the <see cref="Setup.SetupWizard"/> to select <see cref="DatabaseType.MariaDB"/>.
+1 -3
View File
@@ -4,8 +4,6 @@ using System.IO;
using System.Threading;
using System.Threading.Tasks;
#nullable disable
namespace Tgstation.Server.Host.IO
{
/// <summary>
@@ -59,7 +57,7 @@ namespace Tgstation.Server.Host.IO
/// <returns>A <see cref="ValueTask"/> representing the running operation.</returns>
ValueTask CopyDirectory(
IEnumerable<string> ignore,
Func<string, string, ValueTask> postCopyCallback,
Func<string, string, ValueTask>? postCopyCallback,
string src,
string dest,
int? taskThrottle,