diff --git a/project/src/callbacks/CustomizationCallbacks.ts b/project/src/callbacks/CustomizationCallbacks.ts index fe59eb4d..2cf09bd8 100644 --- a/project/src/callbacks/CustomizationCallbacks.ts +++ b/project/src/callbacks/CustomizationCallbacks.ts @@ -34,7 +34,7 @@ export class CustomizationCallbacks { */ public getTraderSuits(url: string, info: IEmptyRequestData, sessionID: string): IGetBodyResponseData { const splittedUrl = url.split("/"); - const traderID = splittedUrl[splittedUrl.length - 2]; + const traderID = splittedUrl[splittedUrl.length - 3]; return this.httpResponse.getBody(this.customizationController.getTraderSuits(traderID, sessionID)); }