metube/ui/src/app/metube-socket.ts
2023-12-30 04:15:44 +01:00

11 lines
302 B
TypeScript

import { Injectable } from '@angular/core';
import { Socket } from 'ngx-socket-io';
@Injectable()
export class MeTubeSocket extends Socket {
constructor() {
const path =
document.location.pathname.replace(/share-target/, '') + 'socket.io';
super({ url: '', options: { path } });
}
}