Changeset 15849 in josm


Ignore:
Timestamp:
2020-02-12T21:53:47+01:00 (4 years ago)
Author:
simon04
Message:

fix #18708 - ArrayIndexOutOfBoundsException in ShowStatusReportAction

File:
1 edited

Legend:

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

    r15740 r15849  
    158158                String value = it.next();
    159159                if (value.contains("=")) {
    160                     String[] param = value.split("=");
     160                    String[] param = value.split("=", 2);
    161161                    // Hide some parameters for privacy concerns
    162162                    if (param[0].toLowerCase(Locale.ENGLISH).startsWith("-dproxy")) {
Note: See TracChangeset for help on using the changeset viewer.