Skip to content

Commit

Permalink
Tweak error
Browse files Browse the repository at this point in the history
  • Loading branch information
Zastai committed Dec 29, 2023
1 parent 7d74624 commit 6778ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MetaBrainz.MusicBrainz/Query.Internals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ private Uri BuildUri(string path, string? extra = null)
er = null;
}
if (er is not null) {
throw new HttpError(error.Status, er.Error, response.Version, er.Help, error);
throw new HttpError(error.Status, er.Error, response.Version, $"{er.Error}\n{er.Help}", error);
}
}
throw;
Expand Down

0 comments on commit 6778ae3

Please sign in to comment.