Fix Google URL generation

This commit is contained in:
~lucidiot 2021-09-17 20:06:37 +02:00
parent 1e99e58e1d
commit 8b8a7d2bbb
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ namespace SpectacleTransformer {
nvc["sl"] = Source.SourceName;
nvc["tl"] = Target.TargetName;
nvc["q"] = Text;
return new Uri(GoogleTranslateUrl, Utils.ToQueryString(nvc));
return new Uri(GoogleTranslateUrl, GoogleTranslateUrl.AbsolutePath + Utils.ToQueryString(nvc));
}
}