fix: 星图呼叫对讲页面点击挂断报错问题
This commit is contained in:
parent
1c1556b0b1
commit
65e28cd553
@ -121,6 +121,12 @@ class StarChartLogic extends BaseGetXController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<void> stopProcessing() async {
|
Future<void> stopProcessing() async {
|
||||||
|
// 检查 voiceProcessor 是否已经初始化
|
||||||
|
if (state.voiceProcessor == null) {
|
||||||
|
state.errorMessage.value = 'Voice processor is not initialized.';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
state.isButtonDisabled.value = true;
|
state.isButtonDisabled.value = true;
|
||||||
try {
|
try {
|
||||||
await state.voiceProcessor?.stop();
|
await state.voiceProcessor?.stop();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user