diff --git a/app/lib/backend/http/api/conversations.dart b/app/lib/backend/http/api/conversations.dart index c30f73667a..fa052f90f0 100644 --- a/app/lib/backend/http/api/conversations.dart +++ b/app/lib/backend/http/api/conversations.dart @@ -175,7 +175,7 @@ Future hasConversationRecording(String conversationId) async { body: '', ); if (response == null) return false; - debugPrint('getConversationPhotos: ${response.body}'); + debugPrint('hasConversationRecording: ${response.body}'); if (response.statusCode == 200) { return jsonDecode(response.body)['has_recording'] ?? false; } diff --git a/app/lib/pages/conversation_detail/conversation_detail_provider.dart b/app/lib/pages/conversation_detail/conversation_detail_provider.dart index aa2a2d2da7..56669bd317 100644 --- a/app/lib/pages/conversation_detail/conversation_detail_provider.dart +++ b/app/lib/pages/conversation_detail/conversation_detail_provider.dart @@ -203,9 +203,9 @@ class ConversationDetailProvider extends ChangeNotifier with MessageNotifierMixi await populatePhotosData(); }); } else if (conversation.source == ConversationSource.friend) { - await hasConversationRecording(conversation.id).then((value) { - hasAudioRecording = value; - }); + // await hasConversationRecording(conversation.id).then((value) { + // hasAudioRecording = value; + // }); } appsList = appProvider!.apps; if (!conversation.discarded) {