From 3197cf96980de75a93d3a7da34dd5e96a2eb48e6 Mon Sep 17 00:00:00 2001 From: Masterjun Date: Tue, 26 Nov 2024 20:02:05 +0100 Subject: [PATCH] increase game version notes to 30000 characters, because with all the file hashes they can become quite large (#2048) --- 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; } } }