Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/services/ui/attachments_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ class AttachmentsService extends GetxService {
}

// Handle getting heic and tiff images
if (attachment.mimeType!.contains('image/hei') && !kIsDesktop) {
if (attachment.mimeType!.contains('image/hei') && !Platform.isWindows) {
if (await File("$filePath.png").exists()) {
originalFile = File("$filePath.png");
} else {
Expand Down
1 change: 1 addition & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ dependencies:
flutter_displaymode: ^0.6.0 # android only
flutter_dotenv: ^5.1.0
flutter_image_compress: ^2.2.0
flutter_image_compress_linux: ^0.1.0
flutter_improved_scrolling: ^0.0.3
flutter_isolate: ^2.1.0
flutter_keyboard_visibility: ^6.0.0 # no desktop support
Expand Down