From b3d499f13bee8fa3522095d5aae59eec5527fde3 Mon Sep 17 00:00:00 2001 From: Masterjun3 Date: Tue, 26 Nov 2024 19:07:28 +0100 Subject: [PATCH] increase game version notes to 30000 characters, because with all the file hashes they can become quite large --- TASVideos/Pages/Games/Versions/Edit.cshtml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TASVideos/Pages/Games/Versions/Edit.cshtml.cs b/TASVideos/Pages/Games/Versions/Edit.cshtml.cs index e3ab17813..905bb89b2 100644 --- a/TASVideos/Pages/Games/Versions/Edit.cshtml.cs +++ b/TASVideos/Pages/Games/Versions/Edit.cshtml.cs @@ -220,7 +220,7 @@ public class VersionEdit [StringLength(50)] public string? SourceDb { get; init; } - [StringLength(2000)] + [StringLength(30000)] public string? Notes { get; init; } } }