Skip to content

Commit

Permalink
🥺🥺🥺
Browse files Browse the repository at this point in the history
  • Loading branch information
umjammer committed Mar 14, 2024
1 parent 8a3121f commit 7ceef99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public EngineList createEngineList(EngineMode require) {
protected List<WrappedVoice<AQTK_VOICE>> geAlltVoices() {
try {
return AquesTalk10Voice.factory.getAllVoices();
} catch (UnsatisfiedLinkError e) {
} catch (Throwable e) {
logger.log(Level.WARNING, "AquesTalk10 doesn't work on arm64", e);
return Collections.emptyList();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public List<WrappedVoice<Voice>> getAllVoices() {
static {
try (VoiceVox voiceVox = new VoiceVox()) {
nativeVoices.addAll(Arrays.asList(voiceVox.getAllVoices()));
} catch (IOException e) {
} catch (Throwable e) {
logger.log(Level.WARNING, "no VoiceVox server found");
}
}
Expand Down

0 comments on commit 7ceef99

Please sign in to comment.