rez_core 6.5.63 → 6.5.65
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.
- package/.claude/settings.local.json +26 -0
- package/.idea/250218_nodejs_core.iml +9 -0
- package/.idea/codeStyles/Project.xml +59 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/copilot.data.migration.agent.xml +6 -0
- package/.idea/copilot.data.migration.ask.xml +6 -0
- package/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/.idea/copilot.data.migration.edit.xml +6 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/prettier.xml +6 -0
- package/.idea/vcs.xml +6 -0
- package/dist/module/listmaster/service/list-master.service.js +2 -1
- package/dist/module/listmaster/service/list-master.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/server.log +850 -0
- package/src/module/listmaster/service/list-master.service.ts +3 -1
|
@@ -613,7 +613,9 @@ export class ListMasterService {
|
|
|
613
613
|
) {
|
|
614
614
|
try {
|
|
615
615
|
// Get internal service client
|
|
616
|
-
const
|
|
616
|
+
const currentAppCode = this.configService.get<string>('appcode');
|
|
617
|
+
|
|
618
|
+
const client = this.factory.getClient(currentAppCode || '');
|
|
617
619
|
|
|
618
620
|
if (!client) {
|
|
619
621
|
throw new BadRequestException('Internal service client not available');
|