Fix lint
authorChocobozzz <me@florianbigard.com>
Fri, 12 Jan 2018 11:18:11 +0000 (12:18 +0100)
committerChocobozzz <me@florianbigard.com>
Fri, 12 Jan 2018 11:18:11 +0000 (12:18 +0100)
server/initializers/migrations/0175-actor-follow-counts.ts
server/models/activitypub/actor-follow.ts
server/tests/api/server/follows.ts

index 06ef77b49a6893f23f7af03f393c7e687a9a2913..4fb5241815de4806b45f00c30e57128b91917968 100644 (file)
@@ -1,5 +1,4 @@
 import * as Sequelize from 'sequelize'
-import { ACTOR_FOLLOW_SCORE } from '../index'
 
 async function up (utils: {
   transaction: Sequelize.Transaction,
index 435d22db5f6afb18eff1c4652f197cb362608094..ced48154705187f57271454407e817c37edd9367 100644 (file)
@@ -2,9 +2,8 @@ import * as Bluebird from 'bluebird'
 import { values } from 'lodash'
 import * as Sequelize from 'sequelize'
 import {
-  AfterCreate, AfterDestroy, AfterUpdate,
-  AllowNull, BelongsTo, Column, CreatedAt, DataType, Default, ForeignKey, IsInt, Max, Model, Table,
-  UpdatedAt
+  AfterCreate, AfterDestroy, AfterUpdate, AllowNull, BelongsTo, Column, CreatedAt, DataType, Default, ForeignKey, IsInt, Max, Model,
+  Table, UpdatedAt
 } from 'sequelize-typescript'
 import { FollowState } from '../../../shared/models/actors'
 import { AccountFollow } from '../../../shared/models/actors/follow.model'
@@ -83,7 +82,7 @@ export class ActorFollowModel extends Model<ActorFollowModel> {
   @AfterCreate
   @AfterUpdate
   static incrementFollowerAndFollowingCount (instance: ActorFollowModel) {
-    if (instance.state !== 'accepted') return
+    if (instance.state !== 'accepted') return undefined
 
     return Promise.all([
       ActorModel.incrementFollows(instance.actorId, 'followingCount', 1),
index 27cf94985493d954f8c804a3db13ab28c0cc0f8e..d16e98bc12227d632f45450dff0c57049791e0a4 100644 (file)
@@ -117,7 +117,7 @@ describe('Test follows', function () {
     expect(follows.length).to.equal(0)
   })
 
-  it('Should have the correct following counts', async function () {
+  it('Should have the correct follows counts', async function () {
     await expectAccountFollows(servers[0].url, 'peertube@localhost:9001', 0, 2)
     await expectAccountFollows(servers[0].url, 'peertube@localhost:9002', 1, 0)
     await expectAccountFollows(servers[0].url, 'peertube@localhost:9003', 1, 0)
@@ -158,7 +158,7 @@ describe('Test follows', function () {
     expect(follows.length).to.equal(0)
   })
 
-  it('Should have the correct following counts 2', async function () {
+  it('Should have the correct follows counts 2', async function () {
     await expectAccountFollows(servers[0].url, 'peertube@localhost:9001', 0, 1)
     await expectAccountFollows(servers[0].url, 'peertube@localhost:9002', 1, 0)
 
@@ -248,7 +248,7 @@ describe('Test follows', function () {
       await wait(7000)
     })
 
-    it('Should have the correct following counts 2', async function () {
+    it('Should have the correct follows counts 3', async function () {
       await expectAccountFollows(servers[0].url, 'peertube@localhost:9001', 0, 2)
       await expectAccountFollows(servers[0].url, 'peertube@localhost:9002', 1, 0)
       await expectAccountFollows(servers[0].url, 'peertube@localhost:9003', 1, 0)