Ignore:
Timestamp:
2009-09-26T10:37:00+02:00 (16 years ago)
Author:
Gubaer
Message:

fixed #3564: i18n fail in error when uploading OSM data to a fresh server

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/UploadAction.java

    r2181 r2189  
    415415                return;
    416416            }
     417            // Tried to update or delete a primitive which never existed on
     418            // the server?
     419            //
     420            else if (ex.getResponseCode() == HttpURLConnection.HTTP_NOT_FOUND) {
     421                ExceptionDialogUtil.explainNotFound(ex);
     422                return;
     423            }
    417424            // any other API exception
    418425            //
Note: See TracChangeset for help on using the changeset viewer.