Onboarding story
This commit is contained in:
parent
94f318ea08
commit
19a42ed719
42 changed files with 725 additions and 143 deletions
|
@ -63,6 +63,7 @@ import type {
|
|||
} from '../sql/Interface';
|
||||
import { MY_STORIES_ID } from '../types/Stories';
|
||||
import { isNotNil } from '../util/isNotNil';
|
||||
import { isSignalConversation } from '../util/isSignalConversation';
|
||||
|
||||
type IManifestRecordIdentifier = Proto.ManifestRecord.IIdentifier;
|
||||
|
||||
|
@ -238,6 +239,10 @@ async function generateManifest(
|
|||
let identifierType;
|
||||
let storageRecord;
|
||||
|
||||
if (isSignalConversation(conversation.attributes)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
const conversationType = typeofConversation(conversation.attributes);
|
||||
if (conversationType === ConversationTypes.Me) {
|
||||
storageRecord = new Proto.StorageRecord();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue