From 3de0df2162411f8b0e4badbcea3bb68e202c9f8e Mon Sep 17 00:00:00 2001 From: Qstick Date: Fri, 2 Oct 2020 22:49:13 -0400 Subject: [PATCH] Fixed: Root folder custom filter in Mass Editor Fixes #260 Co-Authored-By: Mark McDowall --- src/Readarr.Api.V1/Author/AuthorController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Readarr.Api.V1/Author/AuthorController.cs b/src/Readarr.Api.V1/Author/AuthorController.cs index c12351c16..9f958ccd7 100644 --- a/src/Readarr.Api.V1/Author/AuthorController.cs +++ b/src/Readarr.Api.V1/Author/AuthorController.cs @@ -129,6 +129,8 @@ namespace Readarr.Api.V1.Author LinkNextPreviousBooks(authorResources.ToArray()); LinkAuthorStatistics(authorResources, authorStats); + authorResources.ForEach(LinkRootFolderPath); + //PopulateAlternateTitles(seriesResources); return authorResources; }