From ffa7fe5b8066508e5c44cccdb718294974efdef6 Mon Sep 17 00:00:00 2001 From: KhaledNjim Date: Tue, 30 Jul 2024 15:27:20 +0100 Subject: [PATCH] LA-1357 fixed downloads failing for recieved shares --- .../src/datasource_impl/received_share_datasource_impl.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/lib/src/datasource_impl/received_share_datasource_impl.dart b/data/lib/src/datasource_impl/received_share_datasource_impl.dart index 710a0a11a..f038dd368 100644 --- a/data/lib/src/datasource_impl/received_share_datasource_impl.dart +++ b/data/lib/src/datasource_impl/received_share_datasource_impl.dart @@ -93,7 +93,8 @@ class ReceivedShareDataSourceImpl extends ReceivedShareDataSource { savedDir: externalStorageDirPath, headers: {Constant.authorization: 'Bearer ${token.token}'}, showNotification: true, - openFileFromNotification: true))); + openFileFromNotification: true, + saveInPublicStorage: true))); return taskIds .where((taskId) => taskId != null)