aboutsummaryrefslogtreecommitdiff
path: root/pl/cfg.pl
diff options
context:
space:
mode:
Diffstat (limited to 'pl/cfg.pl')
-rw-r--r--pl/cfg.pl11
1 files changed, 9 insertions, 2 deletions
diff --git a/pl/cfg.pl b/pl/cfg.pl
index f24e44e..90b1e94 100644
--- a/pl/cfg.pl
+++ b/pl/cfg.pl
@@ -22,12 +22,19 @@ get_root(V) :-
set_glob(V) :- set_key('EpisodeRoot', V).
get_glob(V) :-
- ( get_key('EpisodeRoot', V)
+ ( get_key('EpisodeRoot', V), !
; V = '*/*.*'
).
set_url(V) :- set_key('UrlPrefix', V).
get_url(V) :-
- ( get_key('UrlPrefix', V)
+ ( get_key('UrlPrefix', V), !
; V = 'https://gogoanime.fi/detective-conan-episode-'
).
+
+set_view_watched(V) :- set_key('ViewWatched', V).
+get_view_watched(V) :-
+ ( get_key('ViewWatched', V),
+ integer(V), !
+ ; V = 1
+ ).