Antique Atlas

Antique Atlas

32M Downloads

Unknown marker type crashes client

Kenkron opened this issue ยท 1 comments

commented

Provided by Pau101:

In AAORenderEventReceiver#renderMarker:

        MarkerType m = MarkerRegistry.find(marker.getType());
        if(m == null) {
            Log.warn(new Object[]{"Could not find marker type for %s\n"});
        }

should be:

        MarkerType m = MarkerRegistry.find(marker.getType());
        if(m == null) {
            Log.warn(new Object[]{"Could not find marker type for %s\n"});
        }
commented

Fixed in e26e4d8.

Now shows an unknown file icon, prints a debug level warning when the map is open, and a warn level warning when exporting to png.