kaori 4 лет назад
Родитель
Сommit
92608f444e
1 измененных файлов с 2 добавлено и 2 удалено
  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) {
     this.crowi = crowi;
-    this.inAppNotificationService = crowi.inAppNotificationService
+    this.inAppNotificationService = crowi.inAppNotificationService;
     this.commentEvent = crowi.event('comment');
 
     // init
@@ -42,7 +42,7 @@ class ActivityService {
     // update
     this.commentEvent.on('update', (user) => {
       this.commentEvent.onUpdate();
-      const inAppNotificationService = new InAppNotificationService(this.crowi)
+      const inAppNotificationService = new InAppNotificationService(this.crowi);
 
       inAppNotificationService.emitSocketIo(user);
     });