From 1c668adff85fea3b3dd0f83163534b53be53d75c Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Fri, 28 Feb 2025 17:35:58 -0700 Subject: [PATCH] Deliminated category names in library exports with semicolon (#1107) --- Source/ApplicationServices/LibraryExporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ApplicationServices/LibraryExporter.cs b/Source/ApplicationServices/LibraryExporter.cs index c1f84769..e2373e53 100644 --- a/Source/ApplicationServices/LibraryExporter.cs +++ b/Source/ApplicationServices/LibraryExporter.cs @@ -144,7 +144,7 @@ namespace ApplicationServices PictureId = a.Book.PictureId, IsAbridged = a.Book.IsAbridged, DatePublished = a.Book.DatePublished, - CategoriesNames = a.Book.LowestCategoryNames().Any() ? a.Book.LowestCategoryNames().Aggregate((a, b) => $"{a}, {b}") : "", + CategoriesNames = string.Join("; ", a.Book.LowestCategoryNames()), MyRatingOverall = a.Book.UserDefinedItem.Rating.OverallRating, MyRatingPerformance = a.Book.UserDefinedItem.Rating.PerformanceRating, MyRatingStory = a.Book.UserDefinedItem.Rating.StoryRating,