Skip to content

Commit

Permalink
fix(media): correct audio stream indicator logic
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwoodland committed May 19, 2022
1 parent 972cc4e commit bdd2264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/views/media/user/User.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
type="random"
:seed="user.address"
:size="$device.isMobile ? 35 : 65"
:class="`${!audioStream ? 'calling' : ''}`"
:class="`${audioStream ? 'calling' : ''}`"
:source="user.profilePicture"
/>
<TypographyTag :text="user.name" inverted />
Expand Down

0 comments on commit bdd2264

Please sign in to comment.