Skip to content

Commit

Permalink
DM開いてるときに音が聞こえなくなる問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
nokhnaton committed Jan 27, 2025
1 parent a2a1367 commit 9cd4136
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/Main/MainView/ChannelView/ChannelView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<channel-header :channel-id="channelId" />
</template>
<template #default>
<QallAudio />
<QallView v-if="getQallingState(channelId) === 'mainView'" />
<channel-view-content
v-else
Expand Down Expand Up @@ -37,7 +36,6 @@ import usePinnedMessages from '/@/composables/message/usePinnedMessages'
import useCurrentViewers from '/@/composables/useCurrentViewers'
import { useQall } from '/@/composables/qall/useQall'
import QallView from '../QallView/QallView.vue'
import QallAudio from '../QallView/QallAudio.vue'
const props = defineProps<{
isReady: boolean
Expand Down
3 changes: 3 additions & 0 deletions src/components/Main/MainView/MainView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
</div>
<div id="header" :class="$style.headerContainer"></div>
<div :class="$style.layoutContainer" :data-layout="layout">
<QallAudio />

Check warning on line 14 in src/components/Main/MainView/MainView.vue

View check run for this annotation

Codecov / codecov/patch

src/components/Main/MainView/MainView.vue#L14

Added line #L14 was not covered by tests

<primary-view-selector :is-ready="isMounted" />
<div id="sidebar-opener" :class="$style.hidden" />
<secondary-view-selector v-if="layout !== 'single'" />
Expand All @@ -24,6 +26,7 @@ import { useMainViewStore } from '/@/store/ui/mainView'
import PrimaryViewSelector from './PrimaryViewSelector.vue'
import SecondaryViewSelector from './SecondaryViewSelector.vue'
import { isIOSApp } from '/@/lib/dom/browser'
import QallAudio from './QallView/QallAudio.vue'

Check warning on line 29 in src/components/Main/MainView/MainView.vue

View check run for this annotation

Codecov / codecov/patch

src/components/Main/MainView/MainView.vue#L29

Added line #L29 was not covered by tests
const iosAppFlag = isIOSApp(window)
const iosAppDeprecatedMessage =
Expand Down

0 comments on commit 9cd4136

Please sign in to comment.