Skip to content

Commit

Permalink
Fixed the port number for the wasm-audio-worklet demo to be in line w…
Browse files Browse the repository at this point in the history
…ith the Readme
  • Loading branch information
maxwalley authored and daxpedda committed May 25, 2023
1 parent a334ce4 commit 5453e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/wasm-audio-worklet/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ def end_headers(self):
SimpleHTTPRequestHandler.end_headers(self)

if __name__ == '__main__':
test(RequestHandler, HTTPServer, port=int(sys.argv[1]) if len(sys.argv) > 1 else 8000)
test(RequestHandler, HTTPServer, port=int(sys.argv[1]) if len(sys.argv) > 1 else 8080)

0 comments on commit 5453e33

Please sign in to comment.