diff --git a/js/modules/types/message.js b/js/modules/types/message.js index 641582266..cce42f27d 100644 --- a/js/modules/types/message.js +++ b/js/modules/types/message.js @@ -24,9 +24,9 @@ const PRIVATE = 'private'; // - Quotes: Write thumbnail data to disk and store relative path to it. // Version 5 // - Attachments: Track number and kind of attachments for media gallery -// - `hasAttachments?: 1 | undefined` -// - `hasVisualMediaAttachments?: 1 | undefined` (for media gallery ‘Media’ view) -// - `hasFileAttachments: ?1 | undefined` (for media gallery ‘Documents’ view) +// - `hasAttachments?: 1 | 0` +// - `hasVisualMediaAttachments?: 1 | 0` (for media gallery ‘Media’ view) +// - `hasFileAttachments?: 1 | 0` (for media gallery ‘Documents’ view) const INITIAL_SCHEMA_VERSION = 0;