Compare commits

...

3 Commits

Author SHA1 Message Date
MrMasrozYTLIVE
72bf632cd4 I dont know what to say here because i just need up-to-date repo on my laptop 2024-06-09 11:07:52 +03:00
MrMasrozYTLIVE
966873774c Merge branch 'main' of https://git.ssh.surf/snxraven/LinkUp-P2P-Chat 2024-06-09 11:05:42 +03:00
Raven Scott
1c85c78e4c add topic id to message 2024-06-09 04:02:45 -04:00
2 changed files with 3 additions and 1 deletions

2
app.js
View File

@ -300,6 +300,7 @@ function sendMessage(e) {
name: config.userName,
message,
avatar: config.userAvatar,
topic: b4a.toString(currentRoom.topic, 'hex'),
timestamp: Date.now(),
});
@ -437,6 +438,7 @@ function toggleSetupView() {
}
function writeConfigToFile(filePath) {
console.debug(config)
fs.writeFile(filePath, JSON.stringify(config), (err) => {
if (err) return console.error(err);
console.log("File has been created");

View File

@ -42,7 +42,7 @@ loadCommands().then(commands => {
if (message.type == "icon") return;
console.log(message);
console.log(`Message received from ${message.name} at ${new Date(message.timestamp).toLocaleTimeString()}: ${message.message}`);
console.log(`Message received from ${message.name}@${peer} at ${new Date(message.timestamp).toLocaleTimeString()}: ${message.message}`);
// Check if the message starts with a command prefix
if (message.message.startsWith('!')) {