From 7124a229a82f388bebe99b8556757a95086e51e0 Mon Sep 17 00:00:00 2001 From: Mihajlo Pavlovic Date: Thu, 19 Dec 2024 11:34:02 +0100 Subject: [PATCH] Fix use getService in get-validate-asset-command --- src/commands/protocols/get/sender/get-validate-asset-command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/protocols/get/sender/get-validate-asset-command.js b/src/commands/protocols/get/sender/get-validate-asset-command.js index 954d14192..19ba2317c 100644 --- a/src/commands/protocols/get/sender/get-validate-asset-command.js +++ b/src/commands/protocols/get/sender/get-validate-asset-command.js @@ -5,7 +5,7 @@ import { OPERATION_ID_STATUS, ERROR_TYPE } from '../../../../constants/constants class GetValidateAssetCommand extends ValidateAssetCommand { constructor(ctx) { super(ctx); - this.operationService = ctx.publishService; + this.operationService = ctx.getService; this.errorType = ERROR_TYPE.GET.GET_VALIDATE_ASSET_ERROR; }