Skip to content

Commit

Permalink
fix: replacing magnetic references by magnet
Browse files Browse the repository at this point in the history
  • Loading branch information
WendelHime committed Oct 9, 2024
1 parent c308895 commit 158d7da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion water/downloader.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func (d *downloader) DownloadWASM(ctx context.Context, w io.Writer) error {
for _, url := range d.urls {
if strings.HasPrefix(url, "magnet:?") {
// Skip magnet links for now
joinedErrs = errors.Join(joinedErrs, errors.New("magentic links are not supported"))
joinedErrs = errors.Join(joinedErrs, errors.New("magent links are not supported"))
continue
}
tempBuffer := &bytes.Buffer{}
Expand Down

0 comments on commit 158d7da

Please sign in to comment.