思迅同步问题修复

This commit is contained in:
liyj 2025-11-27 14:57:50 +08:00
parent 4e2a75520c
commit 504f03e5f6

View File

@ -631,8 +631,9 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements
String fileIndex=folders.get(0); String fileIndex=folders.get(0);
String fileEndFix; String fileEndFix;
if (fileIndex.length()>1){ String [] fileIndexArray=fileIndex.split("_");
fileEndFix=fileIndex.split("_")[1]; if (fileIndexArray.length>1){
fileEndFix=fileIndexArray[1];
} else { } else {
fileEndFix = ""; fileEndFix = "";
} }