Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 6be2de8

Browse files
committed
Bug fixes
1 parent b84d751 commit 6be2de8

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

snapcraft.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

src/cache_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def update_cache(self, data: UpdateCache) -> bool:
113113

114114
def __check_has_cached_sources(self) -> bool:
115115
with open(self.__flathub_cache_path, 'r') as f:
116-
data = f.read()
116+
data = loads(f.read())
117117

118118
if len(data) > 0:
119119
f.close()

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def search_for_application(self) -> None:
7575
user_input = int(input('Select an application code: '))
7676
app = self.founded_apps[user_input]
7777

78-
if self.experiemental_features and app["type"] == Types.APPIMAGE:
78+
if app["type"] == Types.APPIMAGE:
7979
if (self.ask_for_installation()):
8080
info_message('Downloading AppImage automatically...')
8181
if app['repo_url']:

0 commit comments

Comments
 (0)