@bobfrankston/rmfmail 1.1.68 → 1.1.70

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9905,11 +9905,8 @@ var AndroidSyncManager = class {
9905
9905
  async fetchMessageBody(accountId, folderId, uid) {
9906
9906
  const t0 = Date.now();
9907
9907
  if (await this.bodyStore.hasMessage(accountId, folderId, uid)) {
9908
- const cached = await this.bodyStore.getMessage(accountId, folderId, uid);
9909
- console.log(`[fetchBody] cache hit ${accountId}/${folderId}/${uid} (${Date.now() - t0}ms)`);
9910
- return cached;
9908
+ return await this.bodyStore.getMessage(accountId, folderId, uid);
9911
9909
  }
9912
- console.log(`[fetchBody] cache miss ${accountId}/${folderId}/${uid} \u2014 fetching`);
9913
9910
  const provider = this.getProvider(accountId);
9914
9911
  if (!provider) {
9915
9912
  console.warn(`[fetchBody] No provider for ${accountId}`);