Skip to content

Commit d3481fe

Browse files
committed
Fix lint issues
1 parent a4fdf17 commit d3481fe

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/batch-client/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1221,7 +1221,7 @@ export class ZimbraBatchClient {
12211221
*/
12221222

12231223
if (folder.view === FolderView.Contact) {
1224-
(folder.userId = folder.id), (folder.id = `${ownerZimbraId}:${sharedItemId}`);
1224+
((folder.userId = folder.id), (folder.id = `${ownerZimbraId}:${sharedItemId}`));
12251225
}
12261226
if (oname && folders) {
12271227
folder.folders = updateAbsoluteFolderPath(oname, absFolderPath, folders);

src/utils/normalize-mime-parts.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ export function normalizeMimeParts(
9494
attachment.contentId = attachment.contentId
9595
? normalizeCid(attachment.contentId)
9696
: ~normalizeType(attachment.contentType).indexOf('image/') &&
97-
attachment.contentDisposition === 'inline'
98-
? `AUTO-GEN-CID-${attachment.messageId}-${attachment.part}-${attachment.size}`
99-
: undefined;
97+
attachment.contentDisposition === 'inline'
98+
? `AUTO-GEN-CID-${attachment.messageId}-${attachment.part}-${attachment.size}`
99+
: undefined;
100100

101101
return attachment;
102102
};

0 commit comments

Comments
 (0)