change continue to use search history so sorting works as intended

This commit is contained in:
ksyasuda
2022-02-09 20:52:54 -08:00
parent 024bb138f0
commit 9f80566b6e
2 changed files with 5 additions and 5 deletions

View File

@@ -805,11 +805,11 @@ main() {
;;
history)
BASE_URL="$(curl -s -L -o /dev/null -w "%{url_effective}\n" https://gogoanime.cm)"
stmt="SELECT DISTINCT anime_name FROM watch_history ORDER BY watch_date DESC"
search_results="$(printf "%s\n" "$stmt" | sqlite3 -noheader "$HISTORY_DB")"
stmt="SELECT DISTINCT anime_name FROM search_history ORDER BY search_date DESC"
search_results="$(run_stmt "$stmt")"
[ -z "$search_results" ] && die "History is empty"
if ! anime_selection "${search_results[@]}"; then
die "No anime selection found"
die "No anime selected"
fi
lg "SELECTION: $selection_id"
@@ -939,7 +939,7 @@ main() {
;;
esac
choice=$(rofi -dmenu -dpi "$DPI" -config "$ROFI_CFG" \
-theme-str 'listview {columns: 1;} window {width: 20%;}' \
-theme-str 'listview {columns: 1;} window {width: 25%;}' \
-i -l 6 -only-match -sep '|' -a "$cur_quality" -mesg "$(generate_span "Current quality: $quality")" \
-p "Choose quality:" <<< "$qualities")
quality=$(awk '{ print $2 }' <<< "$choice")