@@ -59,7 +59,7 @@ class TalkRepository {
Future<TalkPaginateResponse> refreshHomeTalkData({int? sortType = 1}) {
int limit;
- if (_talkList.isEmpty) {
+ if (_talkList.isEmpty || _talkList.length < 10) {
limit = 10;
} else {
limit = _talkList.length;
@@ -355,6 +355,7 @@ class TalkController extends BaseController {
WakelockPlus.enable();
talkRepository.uploadTalkFile(talkId, duration, file).then((taskId) {
isUploadedFile = true;
+ talkBean.value?.status.value = TalkStatus.analysing;
taskRepository.addTask(taskId);
}).catchError((error) {
isUploading.value = false;