Skip to content

Commit

Permalink
room.ts の日本語がちょっとおかしい気がしたので直した (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuimarudev authored Nov 21, 2024
1 parent f6a6ca0 commit d8517f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/voice/room.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ export default class Room {
let content = "";

if (oldState.self_stream !== newState.self_stream)
content = `画面配信を${newState.self_stream ? "開始" : "終了"}`;
content = `画面共有を${newState.self_stream ? "開始" : "終了"}`;

if (oldState.self_video !== newState.self_video)
content = `カメラ配信を${newState.self_video ? "開始" : "終了"}`;
content = `カメラを${newState.self_video ? "オン" : "オフ"}`;

if (!content) return;

Expand Down

0 comments on commit d8517f1

Please sign in to comment.