Skip to content

Commit

Permalink
fix: incorrect name of query validator template file in download URL
Browse files Browse the repository at this point in the history
  • Loading branch information
tpz committed Dec 7, 2023
1 parent 8bf9f3d commit b42a0c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EvitaDB.QueryValidator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private static void DownloadQueryTemplate()
using HttpClient client = new HttpClient();
HttpResponseMessage response = client
.GetAsync(
"https://raw.githubusercontent.com/FgForrest/evitaDB-C-Sharp-client/master/EvitaDB.QueryValidator/csharp_query_template.txt")
$"https://raw.githubusercontent.com/FgForrest/evitaDB-C-Sharp-client/master/EvitaDB.QueryValidator/{QueryReplacementFileName}")
.GetAwaiter().GetResult();
response.EnsureSuccessStatusCode();
using Stream contentStream = response.Content.ReadAsStreamAsync().GetAwaiter().GetResult(),
Expand Down

0 comments on commit b42a0c4

Please sign in to comment.