From c02d39b2e57c06ead8453e9b2452936699d1e34c Mon Sep 17 00:00:00 2001 From: waker Date: Thu, 6 Sep 2012 20:11:41 +0200 Subject: show "" instead of "?" when the field is not found in metadata --- playlist.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'playlist.c') diff --git a/playlist.c b/playlist.c index 4ada1132..27e50421 100644 --- a/playlist.c +++ b/playlist.c @@ -2795,7 +2795,7 @@ pl_format_title_int (const char *escape_chars, playItem_t *it, int idx, char *s, nm[l] = 0; meta = pl_find_meta_raw (it, nm); if (!meta) { - meta = "?"; + meta = ""; } fmt = e; } @@ -2827,11 +2827,11 @@ pl_format_title_int (const char *escape_chars, playItem_t *it, int idx, char *s, meta = dirname; } else { - meta = "?"; + meta = ""; } } else { - meta = "?"; + meta = ""; } } } -- cgit v1.2.3