@mtgame/core 0.1.16 → 0.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5893,7 +5893,7 @@
5893
5893
  MediaApi.prototype.getGameMedia = function (gameId) {
5894
5894
  return __awaiter(this, void 0, void 0, function () {
5895
5895
  return __generator(this, function (_a) {
5896
- return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_game/" + gameId + "/media/").pipe(operators.map(function (result) { return MediaItem.toFront(result); })).toPromise()];
5896
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_game/" + gameId + "/media/?size=1000").pipe(operators.map(function (result) { return MediaItem.toFront(result); })).toPromise()];
5897
5897
  });
5898
5898
  });
5899
5899
  };