Skip to content

Commit

Permalink
Change pretty title pattern to smth more pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
s-frei committed Jun 11, 2024
1 parent 1a7397d commit bf6a0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/sfrei/tracksearch/tracks/BaseTrack.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public abstract class BaseTrack implements Track {
private final String url;

private String pretty(String title) {
return String.format("%s: Title: '%s' - %s - URL: %s", source.name(), title, durationFormatted(), url);
return String.format("[%s] (%s) '%s' - %s", source.name(), durationFormatted(), title, url);
}

public String pretty() {
Expand Down

0 comments on commit bf6a0fd

Please sign in to comment.