print error if we get a 178 attachment size.

This is a dirty hack until the root cause is fixed.
pull/1381/head
Audric Ackermann 4 years ago
parent 81196b793e
commit 531e7bab46
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -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',

@ -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}`
);

Loading…
Cancel
Save