Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
xackery committed Feb 9, 2023
2 parents 5690ba6 + c43b631 commit ccb2eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ func (c *Client) downloadPatchFile(entry FileEntry) error {
defer w.Close()
client := c.httpClient

url := fmt.Sprintf("%s/%s/%s", c.patcherUrl, c.clientVersion, entry.Name)
url := fmt.Sprintf("%s/%s/%s", c.cacheFileList.DownloadPrefix, c.clientVersion, entry.Name)
resp, err := client.Get(url)
if err != nil {
return fmt.Errorf("download %s: %w", url, err)
Expand Down

0 comments on commit ccb2eef

Please sign in to comment.