Skip to content

Commit c55ec76

Browse files
committed
Merge branch 'staging' of https://github.com/benawad/dogehouse into staging
2 parents 4726850 + d069ce8 commit c55ec76

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

baklava/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dogehouse",
3-
"version": "1.0.59",
3+
"version": "1.0.60",
44
"description": "Taking voice conversations to the moon 🚀",
55
"main": "./dist/electron.js",
66
"scripts": {

baklava/src/utils/rpc/ipc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const ROOM_DATA_UPDATE_FUNC = (event, data) => {
4242
? `Speaking (${data.currentRoom.users.length} of ∞)`
4343
: `Listening (${data.currentRoom.users.length} of ∞)`;
4444
pdata.partyId = data.currentRoom.room.id;
45-
pdata.startTimestamp = new Date(data.currentRoom.room.inserted_at);
45+
pdata.startTimestamp = new Date(data.currentRoom.room.inserted_at).getTime();
4646
pdata.smallImageKey = isSpeaker && !isMuted ? "mic_on" : "mic_off";
4747
pdata.smallImageText = isSpeaker ? `Speaker - ${muted}` : `Listener`;
4848
pdata.buttons = [

kibbeh/src/modules/dashboard/MinimizedRoomCardController.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useRouter } from "next/router";
2-
import React from "react";
2+
import React, { useEffect } from "react";
33
import { useMuteStore } from "../../global-stores/useMuteStore";
44
import { useCurrentRoomInfo } from "../../shared-hooks/useCurrentRoomInfo";
55
import { useLeaveRoom } from "../../shared-hooks/useLeaveRoom";

0 commit comments

Comments
 (0)