Fix Logspam.

Channel check moved to first check to prevent parsing messages not for us.

Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
Armored Dragon 2024-02-25 14:23:08 -06:00
parent 21180144a6
commit 4394044646
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B
2 changed files with 4 additions and 7 deletions

View file

@ -1,10 +1,9 @@
# Armored Chat
Armored Chat is a light-weight alternative chat application that extends the existing chat features.
Armored Chat is a light-weight chat application that allows members of a world to communicate with text.
## Features
- (wip) Drop-in replacement for Fluffy chat
- (wip) E2EE Direct messages
- (wip) Group chats
@ -14,7 +13,6 @@ Armored Chat is a light-weight alternative chat application that extends the exi
TODO:
- Algorithm
- Key exchange
- When and where
- How

View file

@ -82,12 +82,12 @@
Messages.messageReceived.connect(receivedMessage);
function receivedMessage(channel, message) {
console.log(`Received message:\n${message}`);
var message = JSON.parse(message);
channel = channel.toLowerCase();
if (channel !== "chat") return;
console.log(`Received message:\n${message}`);
var message = JSON.parse(message);
message.channel = message.channel.toLowerCase();
// For now, while we are working on superseding Floof, we will allow compatibility with it.
@ -98,7 +98,6 @@
// Check the channel is valid
if (!channels.includes(message.channel)) return;
// FIXME: Not doing distance check?
// If message is local, and if player is too far away from location, don't do anything
if (channel === "local" && Vec3.distance(MyAvatar.position, message.position) < max_local_distance) return;