OdyseeTeam / odysee-ios

The Odysee iOS app with wallet functionality.
MIT License
67 stars 22 forks source link

Support for members only content #392

Closed ktprograms closed 1 year ago

ktprograms commented 1 year ago

Fix: #390

Notes (in no particular order):

ktprograms commented 1 year ago

Remaining two points are just minor annoyances (second one is slightly less minor)

@akinwale if you can see why the second point is happening, feel free to fix it. BTW, if it doesn't build for you, it's probably because of the if let syntax I used (Swift 5.7 allows if let variable instead of if let variable = variable, I'm not sure how it works on older Xcode versions). Just replace any if let variable with if let variable = variable. Feel free to modify this PR's branch.

akinwale commented 1 year ago

Remaining two points are just minor annoyances (second one is slightly less minor)

@akinwale if you can see why the second point is happening, feel free to fix it. BTW, if it doesn't build for you, it's probably because of the if let syntax I used (Swift 5.7 allows if let variable instead of if let variable = variable, I'm not sure how it works on older Xcode versions). Just replace any if let variable with if let variable = variable. Feel free to modify this PR's branch.

I'll merge this and create a separate PR to tackle these issues.

ktprograms commented 1 year ago

Done