I imported a ticket into Itinerary, but it completely froze right after. After a restart it displayed the imported ticket normally. What I observed is that Itinerary tries to search for coordinates for stations. If it could not find them, it freezes. When it could find them, I didn't notice a freeze. Something similar appeared in the logs: Non-working condition logs: itinerary: "Station 1" nan nan itinerary: "Station 2" nan nan Working condition logs: itinerary: "Station 1" Coord1_1 Coord1_2 itinerary: "Station 2 with track info" Coord2_1 Coord2_2
Git commit 0ef3aa53895980a82d79940aa7494f1d700cea84 by Volker Krause. Committed on 23/06/2023 at 14:48. Pushed by vkrause into branch 'release/23.04'. Ensure we pass content: URLs fully encoded to Android API and QFile This fixes the app crashing due to an unhandled security exception when trying to open a file with e.g. a space anywhere in its name or path. content: URLs we get from the file dialog need to get back into Android API (via QFile or otherwise) as exactly the same string, any kind of changes e.g. to the URL encoding are not considered to be the same file, and thus a file we have no permission to access to. FIXED-IN: 23.04.3 M +1 -1 src/app/filehelper.cpp M +1 -1 src/kandroidextras/android/uri.cpp https://invent.kde.org/pim/itinerary/-/commit/0ef3aa53895980a82d79940aa7494f1d700cea84
Nice catch, thank you for the fix!