mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-21 23:20:23 +00:00
speed improve on updatelist
This commit is contained in:
parent
1e2af6d4fd
commit
4bbec74002
2 changed files with 3 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
FROM python:3.10-slim
|
||||
LABEL maintainer="Websoft9<help@websoft9.com>"
|
||||
LABEL version="0.8.10"
|
||||
LABEL version="0.8.11"
|
||||
|
||||
# Create API Directory
|
||||
WORKDIR /usr/src/app
|
||||
|
|
|
@ -151,7 +151,6 @@ def get_update_list():
|
|||
ret['content'] = content
|
||||
return ret
|
||||
|
||||
|
||||
# 获取 appstore update info
|
||||
def get_appstore_update_list():
|
||||
local_path = '/usr/share/cockpit/appstore/appstore.json'
|
||||
|
@ -181,9 +180,9 @@ def get_appstore_update_list():
|
|||
for change in change_log[1:]:
|
||||
if change != '':
|
||||
content.append(change)
|
||||
core_compare = AppStoreCore()
|
||||
else:
|
||||
ret['update'] = False
|
||||
core_compare = AppStoreCore()
|
||||
ret['date'] = date
|
||||
ret['content'] = content
|
||||
ret['core_compare'] = core_compare
|
||||
|
|
Loading…
Reference in a new issue