Browse Source

fix: handle pickup gambar attachment jika null

Masarifyuli 1 month ago
parent
commit
6f60055871
1 changed files with 3 additions and 2 deletions
  1. 3 2
      lib/src/layouts/mobile/request_create.dart

+ 3 - 2
lib/src/layouts/mobile/request_create.dart

@@ -637,8 +637,9 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
   pickupImageNew() async{
     if(Provider.of<CreateSerModule>(context, listen: false).images().length < 5){
       if (kIsWeb) {
-        var image = await reqFunc.getImageNew(context, ImageSource.gallery);
-        Provider.of<CreateSerModule>(context, listen: false).setImages(image);
+        await reqFunc.getImageNew(context, ImageSource.gallery).then((img){
+          img != null ? Provider.of<CreateSerModule>(context, listen: false).setImages(img) : (){};
+        });
       } else{
         showModalBottomSheet<void>(
             context: context,