mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
Fixed: Monitored status being reset after refresh when author is edited manually
Resolves #54
This commit is contained in:
@@ -225,7 +225,12 @@ namespace NzbDrone.Core.Books
|
|||||||
public Author UpdateAuthor(Author author)
|
public Author UpdateAuthor(Author author)
|
||||||
{
|
{
|
||||||
_cache.Clear();
|
_cache.Clear();
|
||||||
|
|
||||||
var storedAuthor = GetAuthor(author.Id);
|
var storedAuthor = GetAuthor(author.Id);
|
||||||
|
|
||||||
|
// Never update AddOptions when updating an author, keep it the same as the existing stored author.
|
||||||
|
author.AddOptions = storedAuthor.AddOptions;
|
||||||
|
|
||||||
var updatedAuthor = _authorRepository.Update(author);
|
var updatedAuthor = _authorRepository.Update(author);
|
||||||
_eventAggregator.PublishEvent(new AuthorEditedEvent(updatedAuthor, storedAuthor));
|
_eventAggregator.PublishEvent(new AuthorEditedEvent(updatedAuthor, storedAuthor));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user