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; }