Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
parent
99bf1e1077
commit
7e0207c248
1 changed files with 4 additions and 1 deletions
|
@ -52,7 +52,10 @@ namespace BirdsiteLive
|
|||
services.AddControllersWithViews();
|
||||
|
||||
services.AddHttpClient("BirdsiteLIVE", httpClient => {
|
||||
httpClient.DefaultRequestHeaders.Add("User-Agent", $"BirdsiteLIVE/{Program.VERSION}; +https://{Configuration["Instance:Domain"]}");
|
||||
ProductInfoHeaderValue product = new($"BirdsiteLIVE/{Program.VERSION}");
|
||||
ProductInfoHeaderValue comment = new($"(+https://{Configuration["Instance:Domain"]})");
|
||||
httpClient.DefaultRequestHeaders.UserAgent.Add(product);
|
||||
httpClient.DefaultRequestHeaders.UserAgent.Add(comment);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue