blob: fadef970374bdb872062b28bcb5d1fd249ed2066 [file] [log] [blame]
onconnect = function(e) {
var port = e.ports[0];
fetch('clientId')
.then(function(response) {
return response.text();
})
.then(function(text) {
port.postMessage({clientId: text});
});
};