Skip to content

Commit

Permalink
Merge pull request #829 from CodeCrowCorp/dev
Browse files Browse the repository at this point in the history
Fix: websocket reconnection and channel edit issues
  • Loading branch information
gagansuie authored Dec 14, 2023
2 parents 5bf2207 + 182381e commit ddf81e8
Show file tree
Hide file tree
Showing 12 changed files with 149 additions and 197 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage-website",
"version": "0.1.11",
"version": "0.1.12",
"license": "GPL-3.0",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/Channel/Chat/DrawerEditChannel.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { tags } from '$lib/stores/channelStore'
import { is_sharing_screen, is_sharing_webcam } from '$lib/stores/streamStore'
import { is_sharing_webrtc, is_sharing_webcam } from '$lib/stores/streamStore'
import { onDestroy, onMount } from 'svelte'
import Tags from 'svelte-tags-input'
import DrawerAddCategory from '$lib/components/Browse/DrawerAddCategory.svelte'
Expand Down
8 changes: 4 additions & 4 deletions src/lib/components/Channel/Stream/StreamContainer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
import { page } from '$app/stores'
import { createEventDispatcher } from 'svelte'
import {
is_sharing_obs,
is_sharing_rtmp,
is_sharing_audio,
is_sharing_screen,
is_sharing_webrtc,
is_sharing_webcam
} from '$lib/stores/streamStore'
import { getNumberInThousands } from '$lib/utils'
Expand Down Expand Up @@ -89,8 +89,8 @@
<div class="flex justify-center h-full">
<div
class="carousel carousel-vertical rounded-lg bg-base-100 w-full m-5 mb-24 {isScrollable ||
$is_sharing_obs ||
$is_sharing_screen ||
$is_sharing_rtmp ||
$is_sharing_webrtc ||
$is_sharing_webcam ||
$is_sharing_audio
? 'overflow-y-hidden'
Expand Down
Loading

0 comments on commit ddf81e8

Please sign in to comment.