mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-08 03:54:15 +02:00
sketch
This commit is contained in:
@@ -61,7 +61,10 @@ class AppImageManager(SoftwareManager):
|
||||
def _gen_app_key(self, app: AppImage):
|
||||
return '{}{}'.format(app.name.lower(), app.github.lower() if app.github else '')
|
||||
|
||||
def search(self, words: str, disk_loader: DiskCacheLoader, limit: int = -1) -> SearchResult:
|
||||
def search(self, words: str, disk_loader: DiskCacheLoader, limit: int = -1, is_url: bool = False) -> SearchResult:
|
||||
if is_url:
|
||||
return SearchResult([], [], 0)
|
||||
|
||||
res = SearchResult([], [], 0)
|
||||
connection = self._get_db_connection(DB_APPS_PATH)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user