From 9c051ee832b451f63d2f3d8705ca361d055af256 Mon Sep 17 00:00:00 2001 From: danielmarbach Date: Tue, 5 Mar 2024 11:39:13 +0100 Subject: [PATCH] Remove the replacement of forward slashes since that could never have worked Co-authored-by: Mauro Servienti --- .../Auditing/MessagesView/GetMessagesController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ServiceControl.Audit/Auditing/MessagesView/GetMessagesController.cs b/src/ServiceControl.Audit/Auditing/MessagesView/GetMessagesController.cs index b8ca3d2832..9894835c3d 100644 --- a/src/ServiceControl.Audit/Auditing/MessagesView/GetMessagesController.cs +++ b/src/ServiceControl.Audit/Auditing/MessagesView/GetMessagesController.cs @@ -78,7 +78,7 @@ public async Task> Search([FromQuery] PagingInfo pagingInfo, [HttpGet] public async Task> SearchByKeyWord([FromQuery] PagingInfo pagingInfo, [FromQuery] SortInfo sortInfo, string keyword) { - var result = await dataStore.QueryMessages(keyword?.Replace("/", @"\"), pagingInfo, sortInfo); + var result = await dataStore.QueryMessages(keyword, pagingInfo, sortInfo); Response.WithQueryStatsAndPagingInfo(result.QueryStats, pagingInfo); return result.Results; }