Skip to content

Commit

Permalink
Minor merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
devopvoid committed Feb 7, 2024
1 parent 6e3efba commit 19e3e30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/component/controller/stream.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class StreamController extends Controller {

testConnection() {
return new HttpRequest({ timeout: 0 })
.post<void, {}>(`https://${window.location.hostname}:8089/janus`, { "janus": "keepalive" });
.post<void, {}>(`https://${window.location.hostname}/janus`, { "janus": "keepalive" });
}

onPeerConnected(peerId: bigint, displayName: string) {
Expand Down Expand Up @@ -110,4 +110,4 @@ export class StreamController extends Controller {

this.eventEmitter.dispatchEvent(Utils.createEvent("lp-stream-connection-state", state));
}
}
}
2 changes: 1 addition & 1 deletion src/component/no-access/no-access.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {CSSResultGroup, html} from 'lit';
import {customElement} from 'lit/decorators.js';
import {I18nLitElement} from '../i18n-mixin';
import {Component} from '../component';
import style from './player-no-access.css';
import style from './no-access.css';
import {t} from "i18next";

@customElement('player-no-access')
Expand Down

0 comments on commit 19e3e30

Please sign in to comment.