Skip to content

Commit

Permalink
fix(backend): HttpRequestService.tsの変更漏れを修正 (fetch時にデコード済みのurlを参照するように)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmaseCocoa committed Nov 21, 2024
1 parent 545b1c0 commit 3a2922d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/core/HttpRequestService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ export class HttpRequestService {

const isLocalAddressAllowed = args.isLocalAddressAllowed ?? false;

const res = await fetch(url, {
const res = await fetch(decodedUrl, {
method: args.method ?? 'GET',
headers: {
'User-Agent': this.config.userAgent,
Expand Down

0 comments on commit 3a2922d

Please sign in to comment.