Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 8ef122f

Browse files
author
Robert Raboud
committed
Converted tabs to spaces
1 parent 7998edc commit 8ef122f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Services/Basket/Basket.API/IntegrationEvents/EventHandling/ProductPriceChangedIntegrationEventHandler.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ public async Task Handle(ProductPriceChangedIntegrationEvent @event)
3030

3131
private async Task UpdatePriceInBasketItems(int productId, decimal newPrice, decimal oldPrice, CustomerBasket basket)
3232
{
33-
string match = productId.ToString();
34-
var itemsToUpdate = basket?.Items?.Where(x => x.ProductId == match).ToList();
33+
string match = productId.ToString();
34+
var itemsToUpdate = basket?.Items?.Where(x => x.ProductId == match).ToList();
3535

36-
if (itemsToUpdate != null)
36+
if (itemsToUpdate != null)
3737
{
3838
foreach (var item in itemsToUpdate)
3939
{

0 commit comments

Comments
 (0)