Actually just returning the url if its host is not 'localhost'

This commit is contained in:
MrMasrozYTLIVE 2024-06-14 19:58:40 +03:00
parent d4dc1b299d
commit 42dccf9547
2 changed files with 4 additions and 3 deletions

2
app.js
View File

@ -850,7 +850,7 @@ function writeConfigToFile(filePath) {
function updatePortInUrl(url) {
if (!url) return url;
const urlObject = new URL(url);
if(urlObject.port == 443) return urlObject.toString();
if(!urlObject.host.startsWith("localhost")) return urlObject.toString();
urlObject.port = servePort;
return urlObject.toString();
}

View File

@ -40,8 +40,9 @@ class Client extends EventEmitter {
async fetchAvatar(url) {
this.botAvatar = url;
const img = await fetch(url);
this.sendMessage(IconMessage.new(this, img));
const web = await fetch(url);
const img = await web.body.getReader().read();
this.sendMessage(IconMessage.new(this, img.value));
}
setupSwarm() {