Skip to content

Commit

Permalink
fix(tui): solve issue with sqlite_url
Browse files Browse the repository at this point in the history
  • Loading branch information
dnlzrgz committed Oct 6, 2024
1 parent 071a6ef commit 67d0fb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "housaku"
version = "v0.5.1"
version = "v0.5.2"
description = "A powerful personal search engine built on top of SQLite's FTS5."
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/housaku/tui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def search_documents(self, query: str) -> None:
start_time = perf_counter()

try:
results = search(settings.sqlite_url, query, 10)
results = search(self.settings.sqlite_url, query, 10)
except Exception as e:
self.notify(
f"[red][Err][/] Something went wrong with your query: {e}",
Expand Down

0 comments on commit 67d0fb0

Please sign in to comment.