1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 10:22:30 +01:00

Revert "temporarily disable member list fetching"

This reverts commit 9819c8d2f6.
This commit is contained in:
Puyodead1 2023-12-05 16:54:33 -05:00
parent 9819c8d2f6
commit 5c2817de98
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC

View File

@ -1,4 +1,6 @@
import { runInAction } from "mobx";
import { observer } from "mobx-react-lite";
import React from "react";
import styled from "styled-components";
import useLogger from "../../hooks/useLogger";
import { useAppStore } from "../../stores/AppStore";
@ -79,13 +81,13 @@ function Chat() {
const app = useAppStore();
const logger = useLogger("Messages");
// React.useEffect(() => {
// if (!app.activeChannel || !app.activeGuild || app.activeChannelId === "@me") return;
React.useEffect(() => {
if (!app.activeChannel || !app.activeGuild || app.activeChannelId === "@me") return;
// runInAction(() => {
// app.gateway.onChannelOpen(app.activeGuildId!, app.activeChannelId!);
// });
// }, [app.activeChannel, app.activeGuild]);
runInAction(() => {
app.gateway.onChannelOpen(app.activeGuildId!, app.activeChannelId!);
});
}, [app.activeChannel, app.activeGuild]);
if (app.activeGuildId && app.activeGuildId === "@me") {
return (