Better link previewing

This commit is contained in:
2025-06-25 22:33:12 +08:00
parent 86258acc6e
commit 1a8abe5849
7 changed files with 559 additions and 167 deletions

View File

@ -87,7 +87,7 @@ class SharingIntentService {
// Extract links from shared content
final List<String> links =
sharedFiles
.where((file) => file.type == SharedMediaType.text)
.where((file) => file.type == SharedMediaType.url)
.map((file) => file.path)
.toList();