Skip to content

Commit 4b93802

Browse files
committed
Fix for Footer/Header swap.
1 parent fde2acb commit 4b93802

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/Webhook/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
config.GetSection(nameof(GotenbergSharpClient)).Bind(options);
1717

1818
var resourcePath = Path.Combine(AppContext.BaseDirectory, "resources", "Html");
19-
var footerPath = Path.Combine(resourcePath, "UrlHeader.html");
20-
var headerPath = Path.Combine(resourcePath, "UrlFooter.html");
19+
var headerPath = Path.Combine(resourcePath, "UrlHeader.html");
20+
var footerPath = Path.Combine(resourcePath, "UrlFooter.html");
2121

2222
Console.WriteLine($"Header: {headerPath}");
2323
Console.WriteLine($"Footer: {footerPath}");

0 commit comments

Comments
 (0)