refactor: fix types
This commit is contained in:
parent
e1e885d6b2
commit
5facd11592
5 changed files with 9 additions and 4 deletions
|
@ -372,6 +372,7 @@ export class ClientServerService {
|
|||
return feed.atom1();
|
||||
} else {
|
||||
reply.code(404);
|
||||
return;
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -384,6 +385,7 @@ export class ClientServerService {
|
|||
return feed.rss2();
|
||||
} else {
|
||||
reply.code(404);
|
||||
return;
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -396,6 +398,7 @@ export class ClientServerService {
|
|||
return feed.json1();
|
||||
} else {
|
||||
reply.code(404);
|
||||
return;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue