Updating with .NET 6.0
This commit is contained in:
@@ -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))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user