aboutsummaryrefslogtreecommitdiff
path: root/lib/util/notifications.dart
diff options
context:
space:
mode:
authordavidpkj <davidpenkow1@gmail.com>2022-08-24 15:38:58 +0200
committerdavidpkj <davidpenkow1@gmail.com>2022-08-24 15:38:58 +0200
commit33bb197557b6222d7db46e02c74fe8442833e295 (patch)
tree017036dc57cce28fac92aedbcad65249d4f4d1c1 /lib/util/notifications.dart
parente18cf14cc7d586a90283cf50678b6d53474ef3b8 (diff)
Minor bug fixes and updates
Diffstat (limited to 'lib/util/notifications.dart')
-rw-r--r--lib/util/notifications.dart4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/notifications.dart b/lib/util/notifications.dart
index 91280da..c652600 100644
--- a/lib/util/notifications.dart
+++ b/lib/util/notifications.dart
@@ -1,4 +1,4 @@
-import 'package:open_file/open_file.dart';
+// import 'package:open_file/open_file.dart';
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
/// Handles all the notification related things.
@@ -19,7 +19,7 @@ class Notifications {
/// Is called when the notification is pressed.
static Future<dynamic> selectNotification(String? payload) async {
if (payload != null) {
- OpenFile.open(payload, type: "*/*"); // TODO: FIXME: Still doesnt work (sometimes)
+ // OpenFile.open(payload, type: "*/*");
}
}