Skip to content

Commit

Permalink
Add: コメントを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi authored Jan 27, 2024
1 parent 3730681 commit a492539
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/voicevox_core/src/engine/open_jtalk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ pub(crate) mod blocking {
&self,
user_dict: &crate::blocking::UserDict,
) -> crate::result::Result<()> {
// 空の辞書を読み込もうとするとクラッシュするので、空の辞書を読み込もうとした時は
// 辞書のアンロード処理に分岐させる。
if user_dict.is_empty() {
return self.0.unload_user_dict();
}
Expand Down Expand Up @@ -226,6 +228,8 @@ pub(crate) mod tokio {
user_dict: &crate::tokio::UserDict,
) -> crate::result::Result<()> {
let inner = self.0 .0.clone();
// 空の辞書を読み込もうとするとクラッシュするので、空の辞書を読み込もうとした時は
// 辞書のアンロード処理に分岐させる。
if user_dict.is_empty() {
return crate::task::asyncify(move || inner.unload_user_dict()).await;
}
Expand Down

0 comments on commit a492539

Please sign in to comment.