Refactor to guid uid

This commit is contained in:
Fergal Moran
2018-05-11 20:24:11 +01:00
parent 5f905d3516
commit d5c9df78cb
31 changed files with 476 additions and 358 deletions

View File

@@ -112,7 +112,7 @@ namespace PodNoms.Api.Controllers {
}
entry.Podcast = podcast;
entry.Processed = false;
await _repository.AddOrUpdateAsync(entry);
_repository.AddOrUpdate(entry);
await _unitOfWork.CompleteAsync();
_processEntry(entry);
var result = _mapper.Map<PodcastEntry, PodcastEntryViewModel>(entry);