Fix for syosetu author names, closes #8
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -25,11 +25,10 @@ public class NovelRepository : BaseRepository<Novel>, INovelRepository
|
||||
{
|
||||
entity.Author = await _authorRepository.Upsert(entity.Author, false);
|
||||
}
|
||||
|
||||
//Tags
|
||||
var newTags = await _tagRepository.UpsertMany(entity.Tags, false);
|
||||
|
||||
//chapters are getting deleted now that their required...
|
||||
|
||||
//chapters
|
||||
var newChapters = await _chapterRepository.UpsertMany(entity.Chapters, false);
|
||||
|
||||
// update in db
|
||||
|
||||
Reference in New Issue
Block a user