Skip to content

Commit

Permalink
fix open file missing
Browse files Browse the repository at this point in the history
  • Loading branch information
LiquidatorCoder committed Nov 25, 2021
1 parent 586a2af commit c8175dc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/services/file_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import 'package:odin/services/locator.dart';
import 'package:odin/services/logger.dart';
import 'package:odin/services/shortener_service.dart';
import 'package:odin/services/zip_service.dart';
import 'package:open_file/open_file.dart';
import 'package:path/path.dart';

class FileService {
Expand Down Expand Up @@ -77,7 +76,6 @@ class FileService {
final file = await _downloadService.downloadFile(fileLink);
final decryptedFile = await _encrytionService.decryptFile(file, password);
// final unzippedFile = await _zipService.unzipFile(decryptedFile);
await OpenFile.open(decryptedFile.path);
logger.d("decryptedFile path : ${decryptedFile.path}");
}
}

0 comments on commit c8175dc

Please sign in to comment.