文件名长度问题...

This commit is contained in:
jianzhichu
2025-12-01 00:41:47 +08:00
parent 89d311901d
commit 77628c9833
8 changed files with 399 additions and 121 deletions
+2 -2
View File
@@ -57,9 +57,9 @@ namespace dy.net.utils
var fullName= finalTitle.Replace("--","-");
if (fullName.Length > 120)
if (fullName.Length > 60)
{
return fullName.Substring(0, 120);
return fullName.Substring(0, 60);
}
else
{