Skip to content

Commit

Permalink
fix(RL-72): force thumbails for new summaries
Browse files Browse the repository at this point in the history
  • Loading branch information
NoodleOfDeath committed Oct 15, 2023
1 parent a06ac3b commit d24d979
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/server/src/services/scribe/ScribeService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,12 @@ export class ScribeService extends BaseService {
await summary.save();
}
}

try {
await summary.generateThumbnails();
} catch (e) {
console.error(e);
}

// Generate sentiment scores
await summary.generateSentiment();
Expand Down

0 comments on commit d24d979

Please sign in to comment.