shawenguan 1 жил өмнө
parent
commit
2096a30920

+ 2 - 3
Scripts/wubian/wubianHelper.js

@@ -426,7 +426,7 @@ function handleNoticeInfo() {
             const artInfo = marketGroupLstDict[artId];
             const groupName = artInfo.groupName;
             const artInfoA = {
-                sortId: arguments.sortId,
+                sortId: artInfo.sortId,
                 hash_id: artInfo.artId,
                 id: tempId,
                 image: artInfo.image,
@@ -440,7 +440,7 @@ function handleNoticeInfo() {
             baseLstDict[groupName].push(artInfoA);
             tempId += 1;
             const artInfoB = {
-                sortId: arguments.sortId,
+                sortId: artInfo.sortId,
                 jumpType: "",
                 url: "",
                 timeList: [],
@@ -471,7 +471,6 @@ function handleNoticeInfo() {
             let baseList = baseLstDict[albumName] || [];
             let relationList = relationLstDict[albumName] || [];
             baseList.sort((a, b) => a.sortId - b.sortId);
-            magicJS.logger.info(JSON.stringify(baseList));
             relationList.sort((a, b) => a.sortId - b.sortId);
             relationAllList = relationAllList.concat(relationList);
             for (let i = 0; i < baseList.length; ++i) {