forked from snxraven/LinkUp-P2P-Chat
Actually just returning the url if its host is not 'localhost'
This commit is contained in:
parent
d4dc1b299d
commit
42dccf9547
2
app.js
2
app.js
@ -850,7 +850,7 @@ function writeConfigToFile(filePath) {
|
|||||||
function updatePortInUrl(url) {
|
function updatePortInUrl(url) {
|
||||||
if (!url) return url;
|
if (!url) return url;
|
||||||
const urlObject = new URL(url);
|
const urlObject = new URL(url);
|
||||||
if(urlObject.port == 443) return urlObject.toString();
|
if(!urlObject.host.startsWith("localhost")) return urlObject.toString();
|
||||||
urlObject.port = servePort;
|
urlObject.port = servePort;
|
||||||
return urlObject.toString();
|
return urlObject.toString();
|
||||||
}
|
}
|
||||||
|
@ -40,8 +40,9 @@ class Client extends EventEmitter {
|
|||||||
|
|
||||||
async fetchAvatar(url) {
|
async fetchAvatar(url) {
|
||||||
this.botAvatar = url;
|
this.botAvatar = url;
|
||||||
const img = await fetch(url);
|
const web = await fetch(url);
|
||||||
this.sendMessage(IconMessage.new(this, img));
|
const img = await web.body.getReader().read();
|
||||||
|
this.sendMessage(IconMessage.new(this, img.value));
|
||||||
}
|
}
|
||||||
|
|
||||||
setupSwarm() {
|
setupSwarm() {
|
||||||
|
Loading…
Reference in New Issue
Block a user