Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
desistefanova committed Jul 26, 2024
1 parent b507e3d commit 84e0d63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/core/impl/background.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ class BackgroundAction implements IAction {
}
}

Future<void> _uploadFiles(List<FileSystemEntity> files, userName) async {
Future<void> _uploadFiles(
List<FileSystemEntity> files, String userName) async {
for (var file in files) {
if (!FileSystemEntity.isDirectorySync(file.path)) {
DateTime lastDate = await File(file.path).lastModified();
Expand Down

0 comments on commit 84e0d63

Please sign in to comment.