diff --git a/service/dictionaries/en.json b/service/dictionaries/en.json index 701120ea9f..2fe7b8b3b8 100644 --- a/service/dictionaries/en.json +++ b/service/dictionaries/en.json @@ -5216,7 +5216,7 @@ "ЗаполнитьПоляЗапросаТовара": "FillProductRequestFields", "ПолучитьЗначенияРекурсивно": "GetValuesRecursively", "ВключитьОбработчикЗапросов": "EnableRequestsHandler", -"КраткоеПредставлениеОшибки": "BriefErrorRepresentation", +"КраткоеПредставлениеОшибки": "BriefErrorDescription", "ДропБокс_СоздатьУдалитьТег": "DropboxAPI_CreateDeleteTag", "ДобавитьОбработчикЗапросов": "AddRequestsHandler", "Неопределено, Произвольный": "Undefined, Arbitrary", diff --git a/src/en/OInt/tools/Classes/OPI_ProxyRequestsHandler.os b/src/en/OInt/tools/Classes/OPI_ProxyRequestsHandler.os index 384b497ea1..8ee859a46f 100644 --- a/src/en/OInt/tools/Classes/OPI_ProxyRequestsHandler.os +++ b/src/en/OInt/tools/Classes/OPI_ProxyRequestsHandler.os @@ -57,7 +57,7 @@ Procedure MainHandler(Context, NexHandler) Export ProcessRequest(Context); Except - Error = BriefErrorRepresentation(ErrorInfo()); + Error = BriefErrorDescription(ErrorInfo()); Context.Response.StatusCode = 500; Context.Response.WriteAsJson(New Structure("result,error", False, Error)); diff --git a/src/en/OPI/src/DataProcessors/OPI_ProxyRequestsHandler/ObjectModule.bsl b/src/en/OPI/src/DataProcessors/OPI_ProxyRequestsHandler/ObjectModule.bsl index 4ab44427e1..4a9d4969dd 100644 --- a/src/en/OPI/src/DataProcessors/OPI_ProxyRequestsHandler/ObjectModule.bsl +++ b/src/en/OPI/src/DataProcessors/OPI_ProxyRequestsHandler/ObjectModule.bsl @@ -57,7 +57,7 @@ Procedure MainHandler(Context, NexHandler) Export ProcessRequest(Context); Except - Error = BriefErrorRepresentation(ErrorInfo()); + Error = BriefErrorDescription(ErrorInfo()); Context.Response.StatusCode = 500; Context.Response.WriteAsJson(New Structure("result,error", False, Error));