mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
make cast to Any explicit
This commit is contained in:
parent
9749e94eb0
commit
44051cf045
1 changed files with 1 additions and 1 deletions
|
|
@ -151,7 +151,7 @@ public extension LinkedItem {
|
|||
"userID": NSString(string: recommendation.user?.userID ?? ""),
|
||||
"name": NSString(string: recommendation.user?.name ?? ""),
|
||||
"username": NSString(string: recommendation.user?.username ?? ""),
|
||||
"profileImageURL": recommendation.user?.profileImageURL == nil ? nil : NSString(string: recommendation.user?.profileImageURL ?? "")
|
||||
"profileImageURL": recommendation.user?.profileImageURL as NSString? as Any
|
||||
]),
|
||||
"recommendedAt": recommendedAt == nil ? nil : NSString(string: recommendedAt!)
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue