support first placeholder & overwriting version

This commit is contained in:
2025-04-23 13:38:51 +02:00
parent 0285892f20
commit e14dedc924
7 changed files with 24 additions and 12 deletions

View File

@@ -41,7 +41,7 @@ internal static class SharedFunctions
{
try
{
var result = await factory.ResolveSourceUrl(action, null);
var result = await factory.ResolveSourceUrl(action);
failed = string.IsNullOrWhiteSpace(result);
}
catch (Exception ex)
@@ -130,7 +130,7 @@ internal static class SharedFunctions
{
Task.Run(async () =>
{
action.SourceUrl = await factory.ResolveSourceUrl(action, null);
action.SourceUrl = await factory.ResolveSourceUrl(action);
}).Wait();
}
catch (Exception)