Skip to content

Commit

Permalink
- OCShare+UniversalItemListCellContentProvider: provide fallback deta…
Browse files Browse the repository at this point in the history
…ilText for OCUsers without userName

- SDK update
  • Loading branch information
felix-schwarz committed Jan 10, 2025
1 parent 991ec69 commit ddcaca8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ios-sdk
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ extension OCShare: UniversalItemListCellContentProvider {
if let displayName = user.displayName {
content.title = .text(displayName)
}
detailText = user.userName
detailText = user.userName ?? OCLocalizedString("User", nil)
} else if let displayName = recipient?.displayName {
content.title = .text(displayName)
}
Expand Down

0 comments on commit ddcaca8

Please sign in to comment.