Fix screen-share tile recovery and make AI summaries use full transcripts.
Deploy Ladill Meet / deploy (push) Successful in 1m17s
Deploy Ladill Meet / deploy (push) Successful in 1m17s
Defer summarization until recordings finish, merge chat with deduplicated live captions, and clear the screen-share overlay so participant cards return after sharing ends. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -175,7 +175,7 @@ class RecordingService
|
||||
app(MeetBillingService::class)->chargeRecordingStorageInitial($recording);
|
||||
|
||||
if ($session->room->setting('auto_ai_summary', false) || config('meet.ai.auto_summarize', true)) {
|
||||
app(TranscriptService::class)->ensureForSession($session, $recording);
|
||||
app(TranscriptService::class)->finalizeAndSummarize($session, $recording);
|
||||
}
|
||||
|
||||
return $recording->fresh();
|
||||
@@ -231,7 +231,7 @@ class RecordingService
|
||||
app(MeetBillingService::class)->chargeRecordingStorageInitial($recording->fresh());
|
||||
|
||||
if ($session->room->setting('auto_ai_summary', false) || config('meet.ai.auto_summarize', true)) {
|
||||
app(TranscriptService::class)->ensureForSession($session, $recording);
|
||||
app(TranscriptService::class)->finalizeAndSummarize($session, $recording);
|
||||
}
|
||||
|
||||
return $recording->fresh();
|
||||
|
||||
Reference in New Issue
Block a user