summaryrefslogtreecommitdiffstats
path: root/sub
diff options
context:
space:
mode:
Diffstat (limited to 'sub')
-rw-r--r--sub/find_subfiles.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sub/find_subfiles.c b/sub/find_subfiles.c
index e81dca964a..f272e84e73 100644
--- a/sub/find_subfiles.c
+++ b/sub/find_subfiles.c
@@ -172,6 +172,10 @@ static void append_dir_subtitles(struct MPOpts *opts,
MP_GROW_ARRAY(*slist, *nsub);
struct subfn *sub = *slist + (*nsub)++;
+ // annoying and redundant
+ if (strncmp(subpath, "./", 2) == 0)
+ subpath += 2;
+
sub->priority = prio;
sub->fname = subpath;
} else