Normalize the distribution list and UUIDs iOS sends us
This commit is contained in:
parent
4a39264188
commit
7d2b91368d
3 changed files with 20 additions and 5 deletions
|
@ -282,7 +282,9 @@ export const getStories = createSelector(
|
|||
const list =
|
||||
story.storyDistributionListId === MY_STORIES_ID
|
||||
? { id: MY_STORIES_ID, name: MY_STORIES_ID }
|
||||
: distributionListSelector(story.storyDistributionListId);
|
||||
: distributionListSelector(
|
||||
story.storyDistributionListId.toLowerCase()
|
||||
);
|
||||
|
||||
if (!list) {
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue