mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-10-28 04:44:11 -07:00
Compare commits
3 Commits
d7bd5899b5
...
7a3a61bb58
Author | SHA1 | Date | |
---|---|---|---|
|
7a3a61bb58 | ||
|
f95ae51af8 | ||
|
8fb570b003 |
14
ani-cli
14
ani-cli
@ -245,9 +245,7 @@ update_date() {
|
||||
insert_history() {
|
||||
datetime=$(date +'%Y-%m-%d %H:%M:%S')
|
||||
lg "Checking if ($*) exists in db"
|
||||
check_db "$@"
|
||||
res="$?"
|
||||
if [[ $res -gt 0 ]]; then
|
||||
if ! check_db "$@"; then
|
||||
lg "Match found... Updating row in history db..."
|
||||
update_date "$@"
|
||||
res=$?
|
||||
@ -408,13 +406,9 @@ find_media() {
|
||||
case "$selection" in
|
||||
Back | ../)
|
||||
dotdotslash="${inp%/*}"
|
||||
if [ -z "$dotdotslash" ]; then
|
||||
insert_history "directory" "/"
|
||||
find_media "/"
|
||||
else
|
||||
[ -z "$dotdotslash" ] && dotdotslash="/"
|
||||
insert_history "directory" "$dotdotslash"
|
||||
find_media "$dotdotslash"
|
||||
fi
|
||||
;;
|
||||
Quit)
|
||||
return 1
|
||||
@ -545,7 +539,7 @@ anime_selection() {
|
||||
done <<< "$search_results"
|
||||
|
||||
[[ -z "$selection_id" ]] && die "Invalid number entered"
|
||||
insert_history "search" "$selection_id"
|
||||
insert_history "search" "$selection_id" &
|
||||
lg "Selection: $selection_id"
|
||||
search_eps "$anime_id"
|
||||
return 0
|
||||
@ -694,7 +688,7 @@ stream() {
|
||||
fi
|
||||
else
|
||||
selection_id="$anime_id"
|
||||
insert_history "search" "$anime_id"
|
||||
insert_history "search" "$anime_id" &
|
||||
search_eps "$anime_id"
|
||||
fi
|
||||
episode_selection
|
||||
|
Loading…
Reference in New Issue
Block a user