Merge pull request #672 from devemux86/rawtrack

Error reading rawTrack: do not throw exception, fix #671
This commit is contained in:
afischerdev 2024-02-19 16:36:39 +01:00 committed by GitHub
commit 97e9a824be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -285,7 +285,9 @@ public final class OsmTrack {
} }
dis.close(); dis.close();
} catch (Exception e) { } catch (Exception e) {
throw new RuntimeException("Exception reading rawTrack: " + e); if (debugInfo != null) {
debugInfo.append("Error reading rawTrack: " + e);
}
} }
} }
} }