mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-11-22 03:19:53 -08:00
Compare commits
2 Commits
d9d7549553
...
3117738f27
Author | SHA1 | Date | |
---|---|---|---|
|
3117738f27 | ||
|
64d70c34f2 |
11
ani-cli
11
ani-cli
@ -216,7 +216,7 @@ search_anime() {
|
||||
search="${1// /}"
|
||||
fi
|
||||
lg "Search Query: $search"
|
||||
curl -s "https://gogoanime.lu//search.html?keyword=$search" -L |
|
||||
curl -s "https://gogoanime.dk//search.html?keyword=$search" -L |
|
||||
sed -nE 's_^[[:space:]]*<a href="/category/([^"]*)" title.*">$_\1_p'
|
||||
}
|
||||
|
||||
@ -606,7 +606,9 @@ main() {
|
||||
anime_name="${updated_episode%%/*}"
|
||||
lg "ANIME NAME: $anime_name"
|
||||
if ! check_db "search" "$anime_name"; then
|
||||
stmt="SELECT COUNT(*) FROM search_history WHERE anime_name = '$anime_name';"
|
||||
ep="${updated_episode##*/ep}"
|
||||
[ "$ep" = "$anime_name" ] && ep=1
|
||||
stmt="SELECT COUNT(*) FROM watch_history WHERE anime_name = '$anime_name' AND episode_number = '${ep:-1}';"
|
||||
lg "QUERY: $stmt"
|
||||
if [[ "$(run_stmt "$stmt")" -ne 0 ]]; then
|
||||
lg "$updated_episode watched before... adding to watched list"
|
||||
@ -623,8 +625,11 @@ main() {
|
||||
fi
|
||||
lg "SELECTION: $selection"
|
||||
selection_id="${selection%%/*}"
|
||||
anime_id="$selection_id"
|
||||
episode_list "$selection_id"
|
||||
get_episode
|
||||
ep_choice_start="${selection##*/ep}"
|
||||
lg "EP_CHOICE_START: $ep_choice_start"
|
||||
[ "$ep_choice_start" = "$selection_id" ] && get_episode
|
||||
;;
|
||||
esac
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user