Passive UUID support
Co-authored-by: Scott Nonnenberg <scott@signal.org>
This commit is contained in:
parent
f64ca0ed21
commit
a90246cbe5
49 changed files with 2226 additions and 776 deletions
|
@ -22,6 +22,7 @@ import {
|
|||
getInteractionMode,
|
||||
getIntl,
|
||||
getRegionCode,
|
||||
getUserConversationId,
|
||||
getUserNumber,
|
||||
} from './user';
|
||||
|
||||
|
@ -181,9 +182,12 @@ export const getLeftPaneLists = createSelector(
|
|||
);
|
||||
|
||||
export const getMe = createSelector(
|
||||
[getConversationLookup, getUserNumber],
|
||||
(lookup: ConversationLookupType, ourNumber: string): ConversationType => {
|
||||
return lookup[ourNumber];
|
||||
[getConversationLookup, getUserConversationId],
|
||||
(
|
||||
lookup: ConversationLookupType,
|
||||
ourConversationId: string
|
||||
): ConversationType => {
|
||||
return lookup[ourConversationId];
|
||||
}
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue