diff --git a/src/peerjs/ext/http_proxy.py b/src/peerjs/ext/http_proxy.py index ccaf845..20c8ef0 100644 --- a/src/peerjs/ext/http_proxy.py +++ b/src/peerjs/ext/http_proxy.py @@ -97,7 +97,7 @@ def _loadPeerId(): if conf_file.exists(): conf = {} with conf_file.open() as infile: - conf = json.load(infile) + conf = yaml.load(infile) savedPeerId = conf.get('peerId', None)