voteapi fixes

This commit is contained in:
Toastie 2025-03-29 20:49:00 +13:00
parent d96039d20c
commit 051daebada
Signed by: toastie_t0ast
GPG key ID: 0861BE54AD481DC7
3 changed files with 4 additions and 3 deletions
src/EllieBot.VotesApi

View file

@ -25,7 +25,7 @@ namespace EllieBot.VotesApi
services.AddGrpcClient<VoteService.VoteServiceClient>(options =>
{
options.Address = new Uri("http://127.0.0.1:59384");
options.Address = new Uri(Configuration["BotGrpcHost"]!);
})
.ConfigureChannel((sp, c) =>
{