Browse Source

精简 events

flyzto 7 months ago
parent
commit
6cf337af3c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      server/models/Games.js

+ 1 - 1
server/models/Games.js

@@ -189,7 +189,7 @@ const getGamesEvents = (platform) => {
       if (!gamesEvents[platform]) {
         gamesEvents[platform] = {};
       }
-      gamesEvents[platform][eventId] = { eventId, events: { ...events, ...special } };
+      gamesEvents[platform][eventId] = { ...events, ...special };
     });
   });
   return gamesEvents;