Skip to content

Commit

Permalink
fix: use IP instead of localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
birme committed Jul 11, 2024
1 parent 6c6ecfc commit 8163b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/encoder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export class Encoder {
);
if (outputDest) {
const source = new URL(
`http://localhost:${this.opts.originPort}/origin/hls/index.m3u8`
`http://127.0.0.1:${this.opts.originPort}/origin/hls/index.m3u8`
);
this.fetcherId = this.pullPush.startFetcher({
name: 'default',
Expand Down

0 comments on commit 8163b78

Please sign in to comment.