-
Hello, How can I know If user is followed or a request sent after I call I am using version: 4.2.10 Thank You |
Beta Was this translation helpful? Give feedback.
Answered by
sbertix
Apr 14, 2021
Replies: 1 comment 1 reply
-
Hey @emreond, The value is still there, it's just not exposed. I'm gonna add it to let status: Status = /* assume this is the `Status` you get back from your request */
if let friendship = status.wrapper().friendshipStatus.optional().flatMap(Friendship.init) {
/* do something with the friendship value */
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sbertix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @emreond,
The value is still there, it's just not exposed. I'm gonna add it to
5.0.0
, though, and make sure the appropriate friendship is returned.For now, you can do this.