@ -1981,9 +1981,13 @@
// Public chat messages from ourselves should be outgoing
message = await createSentMessage(data);
}
} else {
// All other messages should be incoming
if (!message) {
message = await createMessage(data);
const isDuplicate = await isMessageDuplicate(message);
if (isDuplicate) {
// RSS expects duplciates, so squelch log
@ -105,6 +105,10 @@ class LokiFileServerInstance {
await Promise.all(
authorisations.map(async auth => {
if (typeof auth !== 'object') {
return;
// only skip, if in secondary search mode
if (isRequest && auth.secondaryDevicePubKey !== user.username) {
// this is not the authorization we're looking for