Fix default MPD time format (#841)

Change the default value of the `time_format` setting in the mpd module
so that it matches the default value used by `TimeWrapper`.

This fixes a bug where the seconds weren't displaying correctly due to a
typo.

Before: `02:MS`
After:  `2:06`
This commit is contained in:
adralioh 2022-05-16 08:22:24 -05:00 committed by GitHub
parent 90887964e1
commit 29f78b3207
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,7 +97,7 @@ cleartext to the server.)"),
color_map = {}
max_field_len = 25
max_len = 100
time_format = "%M:MS"
time_format = "%m:%S"
truncate_fields = ("title", "album", "artist", "album_artist")
hide_inactive = False
on_leftclick = "switch_playpause"