1
0

Updating with .NET 6.0

This commit is contained in:
2021-11-09 18:37:58 +01:00
parent f2b766e2b0
commit 6c4eb521a7
6 changed files with 27 additions and 18 deletions

View File

@@ -183,7 +183,7 @@ END;"
// max length in the database: 250 chars
string trimmedFileName = fileName;
if (trimmedFileName.Length > 250)
fileName = fileName.Substring(0, 250);
fileName = fileName[..250];
if (migratedFiles.Contains(trimmedFileName))
{