Skip to content

Commit

Permalink
Merge branch 'staging' of https://github.com/benawad/dogehouse into s…
Browse files Browse the repository at this point in the history
…taging
  • Loading branch information
benawad committed Apr 17, 2021
2 parents 4726850 + d069ce8 commit c55ec76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion baklava/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dogehouse",
"version": "1.0.59",
"version": "1.0.60",
"description": "Taking voice conversations to the moon 🚀",
"main": "./dist/electron.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion baklava/src/utils/rpc/ipc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const ROOM_DATA_UPDATE_FUNC = (event, data) => {
? `Speaking (${data.currentRoom.users.length} of ∞)`
: `Listening (${data.currentRoom.users.length} of ∞)`;
pdata.partyId = data.currentRoom.room.id;
pdata.startTimestamp = new Date(data.currentRoom.room.inserted_at);
pdata.startTimestamp = new Date(data.currentRoom.room.inserted_at).getTime();
pdata.smallImageKey = isSpeaker && !isMuted ? "mic_on" : "mic_off";
pdata.smallImageText = isSpeaker ? `Speaker - ${muted}` : `Listener`;
pdata.buttons = [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useRouter } from "next/router";
import React from "react";
import React, { useEffect } from "react";
import { useMuteStore } from "../../global-stores/useMuteStore";
import { useCurrentRoomInfo } from "../../shared-hooks/useCurrentRoomInfo";
import { useLeaveRoom } from "../../shared-hooks/useLeaveRoom";
Expand Down

1 comment on commit c55ec76

@vercel
Copy link

@vercel vercel bot commented on c55ec76 Apr 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.