aboutsummaryrefslogtreecommitdiff
path: root/pl
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-04-07 00:26:08 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-04-07 00:26:08 +0200
commitd22ef6f3a55cd6be0e3cbee22f9ca0f01468b93d (patch)
tree28cf8439e8b1aaa0426fe49738022ef0b01cda13 /pl
parent966a203ff8409972aefe3dd7d243d36adaf21fce (diff)
downloadEpisodeBrowser-d22ef6f3a55cd6be0e3cbee22f9ca0f01468b93d.tar.gz
Fix typo in cfg.pl.
Diffstat (limited to 'pl')
-rw-r--r--pl/cfg.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/pl/cfg.pl b/pl/cfg.pl
index c2eae86..78dc267 100644
--- a/pl/cfg.pl
+++ b/pl/cfg.pl
@@ -20,9 +20,9 @@ get_root(V) :-
re_replace('\\\\', '/', V0, V1),
atom_string(V, V1).
-set_glob(V) :- set_key('EpisodeRoot', V).
+set_glob(V) :- set_key('EpisodeGlob', V).
get_glob(V) :-
- ( get_key('EpisodeRoot', V), !
+ ( get_key('EpisodeGlob', V), !
; V = '*/*.*'
).