From 006c9301d9d107ba68ed5cdd917cb23cc045ae1a Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Sun, 23 Mar 2025 21:53:26 +0800 Subject: [PATCH] fix: follow staff related #481 Signed-off-by: bggRGjQaUbCoE --- lib/pages/video/detail/introduction/controller.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/video/detail/introduction/controller.dart b/lib/pages/video/detail/introduction/controller.dart index 6efd6bd41..f79cb4878 100644 --- a/lib/pages/video/detail/introduction/controller.dart +++ b/lib/pages/video/detail/introduction/controller.dart @@ -162,7 +162,7 @@ class VideoIntroController extends GetxController if (res.data['code'] == 0) { staffRelations.value = { 'status': true, - ...res.data['data'], + if (res.data['data'] != null) ...res.data['data'], }; } });