feat: allow going back on empty search term when using fzf anilist search

This commit is contained in:
Benexl
2025-07-04 16:44:58 +03:00
parent 931f9f10f8
commit e58fd33fe0
+1 -5
View File
@@ -232,11 +232,7 @@ class FZF:
if not result or result.returncode != 0 or not result.stdout:
if result.returncode == 130: # fzf terminated by ctrl-c
exit_app()
print("sth went wrong :confused:")
input("press enter to try again...")
clear()
clear()
return ""
return result.stdout.strip().split("|")[0].strip()