Skip to content

Commit

Permalink
remove some logging
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Cassidy <[email protected]>
  • Loading branch information
stevecassidy committed Feb 1, 2024
1 parent 71a6078 commit af01636
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/data_storage/attachments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,8 @@ export function attachment_to_file(
attachment: PouchDB.Core.Attachment
): File {
const content_type = attachment.content_type;
console.log(attachment);
const data = (attachment as PouchDB.Core.FullAttachment).data;
console.log('a2f', name, content_type, data);
// console.log('a2f', name, content_type, data);
return new File([data], name, {type: content_type});
}

Expand Down

0 comments on commit af01636

Please sign in to comment.