Skip to content

Commit

Permalink
Merge pull request #57 from GDSC-DEU/fix/#56-speak-not-working
Browse files Browse the repository at this point in the history
์Œ๋ฃŒ๋ฅผ ์ฝ์–ด์ฃผ๋Š” ๊ธฐ๋Šฅ์ด ์ž˜ ์•ˆ๋˜๋Š” ๋ฒ„๊ทธ ์ˆ˜์ •
  • Loading branch information
solo5star authored Jun 4, 2022
2 parents 02616a6 + fd2307d commit d0bb60e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/lib/ui/home_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class _HomeViewState extends State<HomeView> {
speech = '์Œ๋ฃŒ์˜ ์ข…๋ฅ˜๊ฐ€ ๋งŽ์Šต๋‹ˆ๋‹ค';
}

if (speech.isNotEmpty && speech != previousSpeech) {
if (speech.isNotEmpty) {
await widget.tts.speak(speech);
previousSpeech = speech;
}
Expand Down

0 comments on commit d0bb60e

Please sign in to comment.