fix: compilation issues since merge

unwrapped was duplicating in onboarding1, so I had to duplicate my fix
to not unwrap it
pull/3122/head
Audric Ackermann 9 months ago
parent 6747652c8c
commit 60c6f47bfa

@ -1,7 +1,7 @@
/* eslint-disable no-await-in-loop */
/* eslint-disable more/no-then */
/* eslint-disable @typescript-eslint/no-misused-promises */
import { compact, concat, flatten, isEmpty, last, sample, toNumber, uniqBy } from 'lodash';
import { compact, concat, flatten, isEmpty, last, sample, uniqBy } from 'lodash';
import { Data, Snode } from '../../../data/data';
import { SignalService } from '../../../protobuf';
import * as Receiver from '../../../receiver/receiver';
@ -377,7 +377,6 @@ export class SwarmPolling {
userConfigMessagesMerged: Array<RetrieveMessageItemWithNamespace>,
returnDisplayNameOnly?: boolean
): Promise<string> {
if (!userConfigMessagesMerged.length) {
return '';
}
@ -410,10 +409,7 @@ export class SwarmPolling {
}
return userInfo.name;
} catch (e) {
window.log.warn(
'LibSessionUtil.initializeLibSessionUtilWrappers failed with',
e.message
);
window.log.warn('LibSessionUtil.initializeLibSessionUtilWrappers failed with', e.message);
} finally {
await GenericWrapperActions.free('UserConfig');
}
@ -428,8 +424,7 @@ export class SwarmPolling {
`failed to handle messages hashes "${allMessageHases}" with libsession. Error: "${e.message}"`
);
}
return ''
return '';
}
// Fetches messages for `pubkey` from `node` potentially updating
@ -693,11 +688,14 @@ export class SwarmPolling {
);
}
const userConfigMessages = resultsFromUserProfile
.filter(m => SnodeNamespace.isUserConfigNamespace(m.namespace))
.map(r => r.messages.messages);
const userConfigMessagesWithNamespace: Array<Array<RetrieveMessageItemWithNamespace>> =
resultsFromUserProfile.map(r => {
return (r.messages.messages || []).map(m => {
return { ...m, namespace: SnodeNamespaces.UserProfile };
});
});
const userConfigMessagesMerged = flatten(compact(userConfigMessages));
const userConfigMessagesMerged = flatten(compact(userConfigMessagesWithNamespace));
if (!userConfigMessagesMerged.length) {
throw new NotFoundError(
'[pollOnceForOurDisplayName] after merging there are no user config messages'

Loading…
Cancel
Save