Skip to content

Commit

Permalink
From v13: Fix #224 - Observe root folder value in rootfolder array if…
Browse files Browse the repository at this point in the history
… set (and root folders array is not set). (#606)
  • Loading branch information
KevinJump committed Apr 17, 2024
1 parent cf77aeb commit 5db50e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uSync.BackOffice/uSyncBackOfficeBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static IUmbracoBuilder AdduSync(this IUmbracoBuilder builder, Action<uSyn
{
if (options.Folders == null || options.Folders.Length == 0)
{
options.Folders = ["uSync/Root/", "uSync/v14/"];
options.Folders = ["uSync/Root/", options.RootFolder];
}
});

Expand Down

0 comments on commit 5db50e4

Please sign in to comment.