Browse Source

fixed lint errs

kaori 4 years ago
parent
commit
92608f444e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/app/src/server/service/activity.ts

+ 2 - 2
packages/app/src/server/service/activity.ts

@@ -17,7 +17,7 @@ class ActivityService {
 
 
   constructor(crowi) {
   constructor(crowi) {
     this.crowi = crowi;
     this.crowi = crowi;
-    this.inAppNotificationService = crowi.inAppNotificationService
+    this.inAppNotificationService = crowi.inAppNotificationService;
     this.commentEvent = crowi.event('comment');
     this.commentEvent = crowi.event('comment');
 
 
     // init
     // init
@@ -42,7 +42,7 @@ class ActivityService {
     // update
     // update
     this.commentEvent.on('update', (user) => {
     this.commentEvent.on('update', (user) => {
       this.commentEvent.onUpdate();
       this.commentEvent.onUpdate();
-      const inAppNotificationService = new InAppNotificationService(this.crowi)
+      const inAppNotificationService = new InAppNotificationService(this.crowi);
 
 
       inAppNotificationService.emitSocketIo(user);
       inAppNotificationService.emitSocketIo(user);
     });
     });