temp
This commit is contained in:
@@ -133,7 +133,8 @@ export async function getSFUConfigWithOpenID(
|
|||||||
sfuConfig = undefined;
|
sfuConfig = undefined;
|
||||||
} else {
|
} else {
|
||||||
logger?.warn(
|
logger?.warn(
|
||||||
`Failed fetching jwt with matrix 2.0 endpoint other issues -> not going to try with legacy endpoint`,
|
`Failed fetching jwt with matrix 2.0 endpoint other issues ->`,
|
||||||
|
`(not going to try with legacy endpoint: forceOldJwtEndpoint is set to false, we did not get a not supported error from the sfu)`,
|
||||||
e,
|
e,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -234,7 +235,7 @@ export async function getLiveKitJWTWithDelayDelegation(
|
|||||||
|
|
||||||
let bodyDalayParts = {};
|
let bodyDalayParts = {};
|
||||||
// Also check for empty string
|
// Also check for empty string
|
||||||
if (delayId && delayEndpointBaseUrl) {
|
if (delayId && delayEndpointBaseUrl && false) {
|
||||||
const delayTimeoutMs =
|
const delayTimeoutMs =
|
||||||
Config.get().matrix_rtc_session?.delayed_leave_event_delay_ms ?? 1000;
|
Config.get().matrix_rtc_session?.delayed_leave_event_delay_ms ?? 1000;
|
||||||
bodyDalayParts = {
|
bodyDalayParts = {
|
||||||
|
|||||||
@@ -552,7 +552,12 @@ export const createLocalMembership$ = ({
|
|||||||
);
|
);
|
||||||
|
|
||||||
const participant$ = scope.behavior(
|
const participant$ = scope.behavior(
|
||||||
localConnection$.pipe(map((c) => c?.livekitRoom?.localParticipant ?? null)),
|
localConnection$.pipe(
|
||||||
|
map((c) => c?.livekitRoom?.localParticipant ?? null),
|
||||||
|
tap((p) => {
|
||||||
|
logger.debug("participant$ updated:", p?.identity);
|
||||||
|
}),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
// Pause upstream of all local media tracks when we're disconnected from
|
// Pause upstream of all local media tracks when we're disconnected from
|
||||||
|
|||||||
Reference in New Issue
Block a user