-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixed: lists change positions randomly #183 #1756
Conversation
@@ -82,11 +82,7 @@ import SwiftUI | |||
.publisher | |||
.receive(on: DispatchQueue.main) | |||
.sink(receiveValue: { [weak self] lists in | |||
// ensure that we only publish the most recent list for each replaceable identifier |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This extra sorting code was needed while I was building this feature before I was correctly updating existing follow set events in CoreData. I believe it is no longer needed because we only have one event in CoreData for each list.
👀 |
This fixes the toggle issue for me. I was never able to reproduce the feed title switching positions, so I couldn't confirm that. cc: @joshuatbrown and @mplorentz |
approving and merging this because Bryan has included videos showing that the fix works. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉
fixed: lists change positions randomly #183 # Conflicts: # CHANGELOG.md
Issues covered
https://github.com/verse-pbc/issues/issues/183
Description
Fixes the issue where lists change order randomly.
Steps to Reproduce
Videos
In the before video, you can see that the order of lists is different each time I launch the app. In the after video, the order is always the same.