Skip to content

Commit

Permalink
Fix #224 - Observe root folder value in rootfolder array if set (and …
Browse files Browse the repository at this point in the history
…root folders array is not set).
  • Loading branch information
KevinJump committed Mar 20, 2024
1 parent bfd422d commit ce0a8e5
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 @@ -94,7 +94,7 @@ public static IUmbracoBuilder AdduSync(this IUmbracoBuilder builder, Action<uSyn
{
if (options.Folders == null || options.Folders.Length == 0)
{
options.Folders = ["uSync/Root/", "uSync/v9/"];
options.Folders = ["uSync/Root/", options.RootFolder];
}
});

Expand Down

0 comments on commit ce0a8e5

Please sign in to comment.