fix lint
This commit is contained in:
parent
0abe2dfee0
commit
c69b72e199
573 changed files with 3318 additions and 3318 deletions
|
|
@ -43,7 +43,7 @@ export default class DeliverManager {
|
|||
*/
|
||||
public addFollowersRecipe() {
|
||||
const deliver = {
|
||||
type: 'Followers'
|
||||
type: 'Followers',
|
||||
} as IFollowersRecipe;
|
||||
|
||||
this.addRecipe(deliver);
|
||||
|
|
@ -56,7 +56,7 @@ export default class DeliverManager {
|
|||
public addDirectRecipe(to: IRemoteUser) {
|
||||
const recipe = {
|
||||
type: 'Direct',
|
||||
to
|
||||
to,
|
||||
} as IDirectRecipe;
|
||||
|
||||
this.addRecipe(recipe);
|
||||
|
|
@ -83,7 +83,7 @@ export default class DeliverManager {
|
|||
if (isFollowers(recipe)) {
|
||||
// followers deliver
|
||||
const followers = await Followings.find({
|
||||
followeeId: this.actor.id
|
||||
followeeId: this.actor.id,
|
||||
});
|
||||
|
||||
for (const following of followers) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue