From 6e6cd6d4c66d37c027b03636659a01bd84b553a0 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 10 Aug 2020 17:47:34 -0400 Subject: [PATCH] Make LogFile names non-nullable [APIDeploy] - API to 7.2.1 --- build/Version.props | 2 +- src/Tgstation.Server.Api/Models/LogFile.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Version.props b/build/Version.props index 516f856b60..7cc39eb49a 100644 --- a/build/Version.props +++ b/build/Version.props @@ -4,7 +4,7 @@ 4.4.4 2.0.0 - 7.2.0 + 7.2.1 8.2.0 5.2.3 0.4.0 diff --git a/src/Tgstation.Server.Api/Models/LogFile.cs b/src/Tgstation.Server.Api/Models/LogFile.cs index cdb99832c0..3f67f93d11 100644 --- a/src/Tgstation.Server.Api/Models/LogFile.cs +++ b/src/Tgstation.Server.Api/Models/LogFile.cs @@ -1,4 +1,4 @@ -using System; +using System; using Tgstation.Server.Api.Models.Internal; namespace Tgstation.Server.Api.Models @@ -11,7 +11,7 @@ namespace Tgstation.Server.Api.Models /// /// The name of the log file. /// - public string? Name { get; set; } + public string Name { get; set; } = String.Empty; /// /// The of when the log file was modified.