Commit d128cf85 authored by nanahira's avatar nanahira

lint

parent a12c9867
Pipeline #5434 passed with stages
in 3 minutes and 2 seconds
......@@ -38,7 +38,10 @@ export class AppService extends ConsoleLogger {
jsdInfo() {
if (!this.jsdUrl) {
throw new BlankReturnMessageDto(404, 'JSDelivr is not configured.').toException();
throw new BlankReturnMessageDto(
404,
'JSDelivr is not configured.',
).toException();
}
const info = new MiddlewareInfoDto();
info.identifier = this.jsdIdentifier;
......@@ -48,7 +51,10 @@ export class AppService extends ConsoleLogger {
async jsd(urlDto: PostUrlDto) {
if (!this.jsdUrl) {
throw new BlankReturnMessageDto(404, 'JSDelivr is not configured.').toException();
throw new BlankReturnMessageDto(
404,
'JSDelivr is not configured.',
).toException();
}
const streamData = await this.getStreamFromUrl(urlDto.url);
//streamData.data.pause();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment