Hi. So I was trying to fix this package and wrapping the definition of enime--set-select-anime-children with an eval like
(defun enime--set-select-anime-children (_)
"Return dynamically created suffixes acording with anime results hold in `enime--current-anime-search-results-alist'."
(-map #'eval (cl-mapcan (lambda (anime-result)
(let-alist (transient-plist-to-alist
(car (cdr anime-result)))
(and .key
(transient--parse-child
'enime-select-anime-transient
(list .key
.description
(lambda ()
(interactive)
(setq enime-current-anime-key .key)
(setq enime-current-anime-id
(enime--get-anime-id-from-key
enime-current-anime-key))
(setq enime-episode-number
1)
(setq enime-dub
nil)
(setq enime-desired-quality
"1080")
(enime-anime-transient)))))))
enime--current-anime-search-results-alist)))
fixed one error but then I was getting a The episode cannot be retrieved message. Also, it seems one of the URLs in the bash script, https://animixplay.to, is now shut down.
Hi. So I was trying to fix this package and wrapping the definition of
enime--set-select-anime-childrenwith anevallikefixed one error but then I was getting a
The episode cannot be retrievedmessage. Also, it seems one of the URLs in the bash script,https://animixplay.to, is now shut down.