Skip to content

Commit

Permalink
文字起こし処理中の判定不具合を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
tissueMO committed Nov 3, 2024
1 parent 8abfcc5 commit 1f18499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/discord/addon/RecordAddon.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ class RecordAddon extends Addon {
console.info('[RecordAddon] 該当期間の該当チャンネルの記録データがありません。');
return null;
}
if (contexts.some(context => !context.transcription)) {
if (contexts.some(context => context?.transcription === undefined)) {
console.info('[RecordAddon] 該当期間の一部が文字起こし処理中です。');
return null;
}
Expand Down

0 comments on commit 1f18499

Please sign in to comment.