A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Data issue with encryption key changes

+11 -3
+11 -3
src/Applications/Brain/User/State.elm
··· 400 400 saveAllHypaethralDataTask userData method = 401 401 let 402 402 save = 403 - saveHypaethralDataBitsTask User.allHypaethralBits userData 403 + saveHypaethralDataBitsTask (ModifiedAt :: User.allHypaethralBits) userData 404 404 in 405 405 case method of 406 406 Dropbox { accessToken } -> ··· 653 653 (\_ -> 654 654 case model.userSyncMethod of 655 655 Just method -> 656 - saveAllHypaethralDataTask model.hypaethralUserData method 656 + let 657 + data = 658 + model.hypaethralUserData 659 + in 660 + saveAllHypaethralDataTask { data | modifiedAt = Just model.currentTime } method 657 661 658 662 Nothing -> 659 663 Task.succeed () ··· 673 677 (\_ -> 674 678 case model.userSyncMethod of 675 679 Just method -> 676 - saveAllHypaethralDataTask model.hypaethralUserData method 680 + let 681 + data = 682 + model.hypaethralUserData 683 + in 684 + saveAllHypaethralDataTask { data | modifiedAt = Just model.currentTime } method 677 685 678 686 Nothing -> 679 687 Task.succeed ()