You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Silent failure if last meeting was an empty meeting
589
+
// Silent failure if last meeting is an empty meeting
590
590
chrome.runtime.sendMessage({
591
-
type: "recover_last_transcript_and_download",
591
+
type: "recover_last_transcript",
592
592
},function(response){
593
593
console.log(response)
594
594
resolve()
595
595
return
596
596
})
597
597
}
598
598
}
599
-
// First meeting itself ended in a disaster. Need to recover that data, process and download it. Also handles recoveries of versions where "meetingStartTimeStamp" was used, because result.meetings will always be undefined in those versions.
599
+
// First meeting itself ended in a disaster. Need to recover that data, process and download it. Also handle recoveries of versions where "meetingStartTimeStamp" was used, because result.meetings will always be undefined in those versions.
// Silent failure if last meeting was an empty meeting
34
+
// Silent failure if last meeting is an empty meeting
34
35
chrome.runtime.sendMessage({
35
36
type: "download_transcript_at_index",
36
37
index: result.meetings.length-1
@@ -40,18 +41,18 @@ window.onload = function () {
40
41
}
41
42
// Last meeting was not processed for some reason. Need to recover that data, process and download it.
42
43
else{
43
-
// Silent failure if last meeting was an empty meeting
44
+
// Silent failure if last meeting is an empty meeting
44
45
chrome.runtime.sendMessage({
45
-
type: "recover_last_transcript_and_download",
46
+
type: "recover_last_transcript",
46
47
},function(response){
47
48
console.log(response)
48
49
})
49
50
}
50
51
}
51
-
// First meeting itself ended in a disaster. Need to recover that data, process and download it. Also handles recoveries of versions where "meetingStartTimeStamp" was used, because result.meetings will always be undefined in those versions.
52
+
// First meeting itself ended in a disaster. Need to recover that data, process and download it. Also handle recoveries of versions where "meetingStartTimeStamp" was used, because result.meetings will always be undefined in those versions.
0 commit comments