Skip to content

Commit

Permalink
Fix: プロジェクトのロード・保存時に発生する ZodError を修正
Browse files Browse the repository at this point in the history
余りにも Sentry に上がってくるのでおかしいな…とちゃんと調べたら、プロジェクトファイルのマイグレーション実装が足りていなかったらしい
ただしエラーが発生しても特に落ちたりはしないようで、誰も気づかなかった?とかなのかも
  • Loading branch information
tsukumijima committed Jan 9, 2025
1 parent 3f61711 commit 3653df1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/domain/project/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,15 @@ export const migrateProjectFileObject = async (
projectData.talk.audioItems[audioItemsKey].query.pauseLengthScale = 1;
}
}

// プリセット内の文内無音倍率の追加
if (projectData.presets?.items) {
for (const presetKey in projectData.presets.items) {
if (!("pauseLengthScale" in projectData.presets.items[presetKey])) {
projectData.presets.items[presetKey].pauseLengthScale = 1;
}
}
}
}

// Validation check
Expand Down

0 comments on commit 3653df1

Please sign in to comment.