Video records API

This commit is contained in:
Adolfo Reyna
2023-01-08 23:54:41 -05:00
parent 05d05f79f7
commit ff6e695bee
8 changed files with 54 additions and 14 deletions

View File

@@ -40,8 +40,9 @@ let Feed = ({ navigation, route }) => {
return navigation.navigate('Profile', { profileid: route.params.profileid })
}
API.getMe().then((me) => {
if (subscribed)
if (subscribed){
GlobalState.me = me;
}
});
console.log("Feed from cache")
let cacheFeed = await getFeed() || [];