🐛 Bug fixes and support new version of API

This commit is contained in:
2025-07-10 16:40:36 +08:00
parent 446c33d8b0
commit d44c8217b0
4 changed files with 5 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ class AudioCallButton extends HookConsumerWidget {
try {
await apiClient.post('/chat/realtime/$roomId');
if (context.mounted) {
context.push('/chat/call/$roomId');
context.push('/chat/$roomId/call');
}
} catch (e) {
showErrorAlert(e);

View File

@@ -360,7 +360,7 @@ class CallOverlayBar extends HookConsumerWidget {
).padding(all: 16),
),
onTap: () {
context.push('/chat/call/${callNotifier.roomId!}');
context.push('/chat/${callNotifier.roomId!}/call');
},
);
}