mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-11-22 03:19:53 -08:00
Compare commits
No commits in common. "924b0eed76778bc8a51847cec89e2ad0563200f7" and "e851b922896804dcd4317151e264286544cac45e" have entirely different histories.
924b0eed76
...
e851b92289
11
ani-cli
11
ani-cli
@ -83,10 +83,11 @@ get_dpage_link() {
|
||||
ep_no=$2
|
||||
|
||||
# credits to fork: https://github.com/Dink4n/ani-cli for the fix
|
||||
for params in "-episode-$ep_no" "-$ep_no" "-episode-$ep_no-1" "-camrip-episode-$ep_no"; do
|
||||
anime_page=$(curl -s "$BASE_URL/$anime_id$params")
|
||||
printf '%s' "$anime_page" | grep -q '404' || break
|
||||
done
|
||||
anime_page=$(curl -s "$BASE_URL/$anime_id-$ep_no")
|
||||
|
||||
if printf '%s' "$anime_page" | grep -q "404"; then
|
||||
anime_page=$(curl -s "$BASE_URL/$anime_id-episode-$ep_no")
|
||||
fi
|
||||
|
||||
printf '%s' "$anime_page" |
|
||||
sed -n -E 's/^[[:space:]]*<a href="#" rel="100" data-video="([^"]*)".*/\1/p' |
|
||||
@ -617,7 +618,7 @@ open_episode() {
|
||||
fi
|
||||
|
||||
# Don't update watch history if downloading episode
|
||||
insert_history "watch" "$anime_id" "$episode"
|
||||
(("$is_download" == 0)) && insert_history "watch" "$anime_id" "$episode"
|
||||
|
||||
lg "Getting data for episode $episode"
|
||||
dpage_link=$(get_dpage_link "$anime_id" "$episode")
|
||||
|
Loading…
Reference in New Issue
Block a user