diff options
| -rw-r--r-- | apps/playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index 8dede37..572eb26 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -1999,7 +1999,7 @@ int playlist_insert_playlist(struct playlist_info* playlist, char *filename, #endif break; - if (temp_buf[0] != '#' || temp_buf[0] != '\0') + if (temp_buf[0] != '#' && temp_buf[0] != '\0') { int insert_pos; |