This commit is contained in:
TheXamlGuy
2024-06-15 14:24:30 +01:00
parent 85998cde35
commit 61213b00e7
15 changed files with 33 additions and 43 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ public class FavouriteItemHandler(IDecoratorService<Item<(Guid, string)>> decora
(Guid id, string name) = item.Value;
await mediator.Handle<UpdateEventArgs<(Guid, int)>, bool>(new UpdateEventArgs<(Guid, int)>((id, 1)));
publisher.Publish(Changed.As(item));
publisher.Publish(Changed.As<Item>());
}
}
catch