diff --git a/OsmAnd/src/com/osmand/views/OsmBugsLayer.java b/OsmAnd/src/com/osmand/views/OsmBugsLayer.java index 173eb26148..eff5848070 100644 --- a/OsmAnd/src/com/osmand/views/OsmBugsLayer.java +++ b/OsmAnd/src/com/osmand/views/OsmBugsLayer.java @@ -354,7 +354,8 @@ public class OsmBugsLayer implements OsmandMapLayer { public void onClick(DialogInterface dialog, int which) { String text = ((EditText)view.findViewById(R.id.BugMessage)).getText().toString(); String author = ((EditText)view.findViewById(R.id.AuthorName)).getText().toString(); - OsmandSettings.setUserName(ctx, author); + // do not set name as author it is ridiculous in that case +// OsmandSettings.setUserName(ctx, author); boolean bug = createNewBug(latitude, longitude, text, author); if (bug) {