Update workspace entities to make all TEXT nullable (#16144)
Follow up on #15926 --------- Co-authored-by: Etienne <45695613+etiennejouan@users.noreply.github.com> Co-authored-by: guillim <guigloo@msn.com>
This commit is contained in:
+2
-2
@@ -218,7 +218,7 @@ export class SyncMessageFoldersService {
|
||||
if (isDefined(existingFolder.externalId)) {
|
||||
existingFolderMap.set(existingFolder.externalId, existingFolder);
|
||||
}
|
||||
existingFolderMap.set(existingFolder.name, existingFolder);
|
||||
existingFolderMap.set(existingFolder.name ?? '', existingFolder);
|
||||
}
|
||||
|
||||
return existingFolderMap;
|
||||
@@ -250,6 +250,6 @@ export class SyncMessageFoldersService {
|
||||
return MessageFolderName.SENT_ITEMS;
|
||||
}
|
||||
|
||||
return folder.name;
|
||||
return folder.name ?? '';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user