File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
actions/get-meeting-transcript
sources/new-recording-transcript-completed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,13 @@ export default {
2727 } ,
2828 } ,
2929 async run ( { $ } ) {
30+ const meetingId = this . meetingId . value || this . meetingId ;
3031 const { data : transcript } = await this . getMeetingTranscript ( {
3132 $,
32- meetingId : this . meetingId . value || this . meetingId ,
33+ meetingId,
3334 } ) ;
3435
35- $ . export ( "$summary" , `Retrieved transcript for meeting ${ this . meetingId } ` ) ;
36+ $ . export ( "$summary" , `Retrieved transcript for meeting ${ meetingId } ` ) ;
3637 return transcript ;
3738 } ,
3839} ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default {
1313 type : "$.interface.apphook" ,
1414 appProp : "zoomAdmin" ,
1515 eventNames : [
16- "recording.transcript.completed " ,
16+ "recording.transcript_completed " ,
1717 ] ,
1818 } ,
1919 } ,
@@ -71,8 +71,8 @@ export default {
7171 } ,
7272 } ,
7373 async run ( event ) {
74- if ( event . event !== "recording.transcript.completed " ) {
75- console . log ( "Not a recording.transcript.completed event. Exiting" ) ;
74+ if ( event . event !== "recording.transcript_completed " ) {
75+ console . log ( "Not a recording.transcript_completed event. Exiting" ) ;
7676 return ;
7777 }
7878 const { payload } = event ;
You can’t perform that action at this time.
0 commit comments