Hi, my app supports opening a file with a double-click on Nautilus (or more generally a file manager app), and I have a problem: the file given to do_open() callback is not directly accessible without large flatpak file permission. Would someone know how to have access to the given file without using large flatpak permission like ```filesystem=host``` ?
The file should be accessible in your app without any permissions if everything is set up correctly. Does the Exec line in your .desktop file contain %U at the end? Something like:
With my old desktop file, it didn’t work. But with just your edit, it works. I already had the app flag that you told me. Thank you for your responses!