A few bug fixes

This commit is contained in:
Scott Nonnenberg 2021-02-26 07:08:59 -08:00 committed by Josh Perez
parent 4b28fd896a
commit 2aa2aca9f2
6 changed files with 76 additions and 27 deletions

View file

@ -424,7 +424,7 @@ export const getConversationSelector = createSelector(
if (onE164) {
return selector(onE164);
}
const onUuid = getOwn(byUuid, id);
const onUuid = getOwn(byUuid, id.toLowerCase ? id.toLowerCase() : id);
if (onUuid) {
return selector(onUuid);
}