@ -45,7 +45,7 @@ export async function send(
timestamp,
cipherText
);
// window.log.warn('sending', envelope, ' to ', device.key);
window.log.debug('Sending envelope', envelope, ' to ', device.key);
const data = wrapEnvelope(envelope);
return pRetry(
@ -11,6 +11,7 @@ export async function toRawMessage(
): Promise<RawMessage> {
const timestamp = message.timestamp;
const ttl = message.ttl();
window.log.debug('toRawMessage proto:', message.contentProto());
const plainTextBuffer = message.plainTextBuffer();
let encryption: EncryptionType;
@ -76,7 +76,6 @@ class StubAppDotNetAPI extends LokiAppDotNetServerAPI {
options: { method?: string } = {}
) {
const { method } = options;
// console.warn('STUBBED ', method, ':', endpoint);
if (
endpoint === 'loki/v1/rss/messenger' ||
@ -18,15 +18,13 @@ class StubMessageAPI {
ttl: number,
options = {}
// console.warn('STUBBED message api ', pubKey, ttl);
const post = {
method: 'POST',
};
const data64 = StringUtils.decode(data, 'base64');
await fetch(
`${
this.baseUrl
`${this.baseUrl
}/messages?pubkey=${pubKey}×tamp=${messageTimeStamp}&data=${encodeURIComponent(
data64
)}`,