fixing bugs with the footer

This commit is contained in:
talksik
2022-01-01 19:36:43 -08:00
parent 398185dac0
commit c4d0e1bb07
3 changed files with 13 additions and 4 deletions
@@ -467,7 +467,7 @@ extension CircleGridView {
private func handleTap(gridItemIndex: Int, friendId: String) {
print("tap gesture activated")
// if friend and I are online, start call immediately
// if friend and I are online, start convo immediately with them
if self.authSessionStore.relevantUsersDict[friendId]?.userStatus == .online
&& self.authSessionStore.user?.userStatus == .online {
self.convoVM.startConvo(friendId: friendId)
@@ -475,6 +475,8 @@ extension CircleGridView {
return
}
// TODO: if I am in a call and I am adding someone else online, then make them join my convo
// clearing the player to make room for this friend's convo or to deselect this user
self.queuePlayer.removeAllItems()