|
@@ -17,7 +17,7 @@ class CommentService extends CrudService {
|
|
|
const total = await (await this.model.find(info)).length;
|
|
|
const comments = await this.model.find(info).skip(Number(skip)).limit(Number(limit));
|
|
|
for (const comment of comments) {
|
|
|
- const url = "http://127.0.0.1:9999/api/auth/user/" + comment.uid;
|
|
|
+ const url = 'http://127.0.0.1:9999/api/auth/user/' + comment.uid;
|
|
|
const user = await this.ctx.curl(url, {
|
|
|
method: 'get',
|
|
|
headers: {
|