Skip to content

Commit cb33149

Browse files
committed
Muted stream & mute privacy stream icons are fixed
1 parent 1667fc0 commit cb33149

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/streams/StreamIcon.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ export default function StreamIcon(props: Props): Node {
1818
const { color, style, isPrivate, isMuted, isWebPublic, size } = props;
1919

2020
let Component = undefined;
21-
if (isMuted) {
22-
Component = IconMute;
21+
22+
if (isMuted && isPrivate) {
23+
Component = IconPrivate;
2324
} else if (isPrivate) {
2425
Component = IconPrivate;
2526
} else if (isWebPublic ?? false) {

0 commit comments

Comments
 (0)