fix: follow up (#702)

This commit is contained in:
My-Responsitories
2025-04-17 07:55:14 +08:00
committed by GitHub
parent cb6ead96d1
commit 12c711424b
7 changed files with 35 additions and 32 deletions

View File

@@ -546,7 +546,9 @@ class VideoIntroController extends GetxController
}
var result = await UserHttp.hasFollow(videoDetail.value.owner!.mid!);
if (result['status']) {
followStatus.value = result['data'];
Map data = result['data'];
if (data['special'] == 1) data['attribute'] = -10;
followStatus.value = data;
}
}