public async Task Handle(ReleaseInfoWasFetchedEvent notification, CancellationToken cancellationToken)
 {
     _localReleaseService.MakeUpdateFromServer(notification.RelaseInfos);
     await _mediator.Publish(new LocalReleaseInfoListWasUpdatedEvent(), cancellationToken);
 }