@@ -357,21 +357,25 @@ export class AppListenerManager {
357357 case AppInterface . IPreMessageSentModify :
358358 return this . executePreMessageSentModify ( data as IMessage ) ;
359359 case AppInterface . IPostMessageSent :
360- return this . executePostMessageSent ( data as IMessage ) ;
360+ this . executePostMessageSent ( data as IMessage ) ;
361+ return ;
361362 case AppInterface . IPostSystemMessageSent :
362- return this . executePostSystemMessageSent ( data as IMessage ) ;
363+ this . executePostSystemMessageSent ( data as IMessage ) ;
364+ return ;
363365 case AppInterface . IPreMessageDeletePrevent :
364366 return this . executePreMessageDeletePrevent ( data as IMessage ) ;
365367 case AppInterface . IPostMessageDeleted :
366- return this . executePostMessageDelete ( data as IMessageDeleteContext ) ;
368+ this . executePostMessageDelete ( data as IMessageDeleteContext ) ;
369+ return ;
367370 case AppInterface . IPreMessageUpdatedPrevent :
368371 return this . executePreMessageUpdatedPrevent ( data as IMessage ) ;
369372 case AppInterface . IPreMessageUpdatedExtend :
370373 return this . executePreMessageUpdatedExtend ( data as IMessage ) ;
371374 case AppInterface . IPreMessageUpdatedModify :
372375 return this . executePreMessageUpdatedModify ( data as IMessage ) ;
373376 case AppInterface . IPostMessageUpdated :
374- return this . executePostMessageUpdated ( data as IMessage ) ;
377+ this . executePostMessageUpdated ( data as IMessage ) ;
378+ return ;
375379 case AppInterface . IPostMessageReacted :
376380 return this . executePostMessageReacted ( data as IMessageReactionContext ) ;
377381 case AppInterface . IPostMessageFollowed :
@@ -390,11 +394,13 @@ export class AppListenerManager {
390394 case AppInterface . IPreRoomCreateModify :
391395 return this . executePreRoomCreateModify ( data as IRoom ) ;
392396 case AppInterface . IPostRoomCreate :
393- return this . executePostRoomCreate ( data as IRoom ) ;
397+ this . executePostRoomCreate ( data as IRoom ) ;
398+ return ;
394399 case AppInterface . IPreRoomDeletePrevent :
395400 return this . executePreRoomDeletePrevent ( data as IRoom ) ;
396401 case AppInterface . IPostRoomDeleted :
397- return this . executePostRoomDeleted ( data as IRoom ) ;
402+ this . executePostRoomDeleted ( data as IRoom ) ;
403+ return ;
398404 case AppInterface . IPreRoomUserJoined :
399405 return this . executePreRoomUserJoined ( data as IRoomUserJoinedContext ) ;
400406 case AppInterface . IPostRoomUserJoined :
@@ -405,9 +411,11 @@ export class AppListenerManager {
405411 return this . executePostRoomUserLeave ( data as IRoomUserLeaveContext ) ;
406412 // External Components
407413 case AppInterface . IPostExternalComponentOpened :
408- return this . executePostExternalComponentOpened ( data as IExternalComponent ) ;
414+ this . executePostExternalComponentOpened ( data as IExternalComponent ) ;
415+ return ;
409416 case AppInterface . IPostExternalComponentClosed :
410- return this . executePostExternalComponentClosed ( data as IExternalComponent ) ;
417+ this . executePostExternalComponentClosed ( data as IExternalComponent ) ;
418+ return ;
411419 case AppInterface . IUIKitInteractionHandler :
412420 return this . executeUIKitInteraction ( data as UIKitIncomingInteraction ) ;
413421 case AppInterface . IUIKitLivechatInteractionHandler :
0 commit comments