Changeset 18205 in josm for trunk/src/org


Ignore:
Timestamp:
2021-09-11T14:00:16+02:00 (3 years ago)
Author:
Don-vip
Message:

fix #21309 - allow changeset hashtags to start with digits (patch by marcello)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/io/UploadDialogModel.java

    r18173 r18205  
    7575            Arrays.stream(comment.split("\\s", -1))
    7676                .map(s -> Utils.strip(s, ",;"))
    77                 .filter(s -> s.matches("#[a-zA-Z][-_a-zA-Z0-9]+"))
     77                .filter(s -> s.matches("#[a-zA-Z0-9][-_a-zA-Z0-9]+"))
    7878                .collect(Collectors.toList()));
    7979        return hashtags.isEmpty() ? null : hashtags;
Note: See TracChangeset for help on using the changeset viewer.