diff --git a/js/modules/loki_app_dot_net_api.js b/js/modules/loki_app_dot_net_api.js index fbae20db6..027930430 100644 --- a/js/modules/loki_app_dot_net_api.js +++ b/js/modules/loki_app_dot_net_api.js @@ -122,6 +122,10 @@ const sendViaOnion = async (srvPubKey, url, fetchOptions, options = {}) => { payloadObj, options.requestNumber ); + if (typeof result === 'number') { + window.log.error('sendOnionRequestLsrpcDest() returned a number indicating an error: ', result); + } + } catch (e) { log.error( 'loki_app_dot_net:::sendViaOnion - lokiRpcUtils error', diff --git a/ts/receiver/attachments.ts b/ts/receiver/attachments.ts index d8ab40e25..849d165d2 100644 --- a/ts/receiver/attachments.ts +++ b/ts/receiver/attachments.ts @@ -30,7 +30,11 @@ export async function downloadAttachment(attachment: any) { res = await window.lokiFileServerAPI.downloadAttachment(attachment.url); } - if (!res.response || !res.response.data) { + // FIXME "178" test to remove once this is fixed server side. + if (!res.response || !res.response.data || res.response.data.length === 178) { + if (res.response.data.length === 178) { + window.log.error('Data of 178 length corresponds of a 404 returned as 200 by file.getsession.org.'); + } throw new Error( `downloadAttachment: invalid response for ${attachment.url}` );