Skip to content

Commit

Permalink
fix(reg): Fix double path separator for lottie assets
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Jun 16, 2021
1 parent b64a6cb commit 07ab523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.UWP/Storage/Helpers/AssetsPathBuilder.wasm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ internal static class AssetsPathBuilder
=> !string.IsNullOrEmpty(UNO_BOOTSTRAP_APP_BASE)
// Concatenates the app's base path (used to support deep-linking), with the generated app based content folder name.
// See https://github.com/unoplatform/Uno.Wasm.Bootstrap#configuration-environment-variables for more details.
? $"{UNO_BOOTSTRAP_WEBAPP_BASE_PATH}{UNO_BOOTSTRAP_APP_BASE}/{contentRelativePath}"
? $"{UNO_BOOTSTRAP_WEBAPP_BASE_PATH}{UNO_BOOTSTRAP_APP_BASE}/{contentRelativePath?.TrimStart('/')}"
: contentRelativePath;
}
}

0 comments on commit 07ab523

Please sign in to comment.