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