BranchMetrics/ios-branch-deep-linking-attribution

Broken title when it is not alphabetical

StevenArmandLee opened this issue · 3 comments

let buo = BranchUniversalObject.init(canonicalIdentifier: “”)
buo.title = “一”
buo.contentDescription = “description”

The above code will result in the shareSheet showing broken ascii

and subtitle doesn’t show the correct subtitle which is set in contentDescription

053803C9-C719-4B07-BF5A-7B9D234A4D68

Same issue here

You'll need to set a placeholder url or LPLinkMetadata to control the look and feel of the sharesheet. In a future release, we will default it to your app's base url instead of the fallback bnc.lt url.

https://github.com/BranchMetrics/ios-branch-deep-linking-attribution/blob/master/Branch-SDK/BranchShareLink.h#L90-L96

The problem is the 一 symbol, which is unsupported. Using the - character instead will solve your issue.