mirror of
https://github.com/vector-im/element-call.git
synced 2026-01-18 02:32:27 +00:00
revert changes unrelated to this PR
This commit is contained in:
@@ -3,7 +3,7 @@ networks:
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
auth-service:
|
auth-service:
|
||||||
image: ghcr.io/element-hq/lk-jwt-service:0.4.1
|
image: ghcr.io/element-hq/lk-jwt-service:sha-f8ddd00
|
||||||
pull_policy: always
|
pull_policy: always
|
||||||
hostname: auth-server
|
hostname: auth-server
|
||||||
environment:
|
environment:
|
||||||
@@ -25,7 +25,7 @@ services:
|
|||||||
- ecbackend
|
- ecbackend
|
||||||
|
|
||||||
auth-service-1:
|
auth-service-1:
|
||||||
image: ghcr.io/element-hq/lk-jwt-service:0.4.1
|
image: ghcr.io/element-hq/lk-jwt-service:sha-f8ddd00
|
||||||
pull_policy: always
|
pull_policy: always
|
||||||
hostname: auth-server-1
|
hostname: auth-server-1
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -435,6 +435,19 @@ export const InCallView: FC<InCallViewProps> = ({
|
|||||||
[vm],
|
[vm],
|
||||||
);
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
widget?.api.transport
|
||||||
|
.send(
|
||||||
|
gridMode === "grid"
|
||||||
|
? ElementWidgetActions.TileLayout
|
||||||
|
: ElementWidgetActions.SpotlightLayout,
|
||||||
|
{},
|
||||||
|
)
|
||||||
|
.catch((e) => {
|
||||||
|
logger.error("Failed to send layout change to widget API", e);
|
||||||
|
});
|
||||||
|
}, [gridMode]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (widget) {
|
if (widget) {
|
||||||
const onTileLayout = (ev: CustomEvent<IWidgetApiRequest>): void => {
|
const onTileLayout = (ev: CustomEvent<IWidgetApiRequest>): void => {
|
||||||
|
|||||||
@@ -110,7 +110,6 @@ export const widget = ((): WidgetHelpers | null => {
|
|||||||
EventType.RoomRedaction,
|
EventType.RoomRedaction,
|
||||||
ElementCallReactionEventType,
|
ElementCallReactionEventType,
|
||||||
EventType.RTCDecline,
|
EventType.RTCDecline,
|
||||||
EventType.RTCMembership, // Send/Read the membership sticky events
|
|
||||||
];
|
];
|
||||||
|
|
||||||
const sendState = [
|
const sendState = [
|
||||||
|
|||||||
Reference in New Issue
Block a user