Reworked message format, added support for audio messages, made Message class #10
2
app.js
2
app.js
@ -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();
|
||||
}
|
||||
|
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user