mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 06:25:24 +00:00
Fix: Cloud client should also be known packages
This commit is contained in:
parent
2e7c39dcf4
commit
cf1e61b067
@ -955,7 +955,7 @@ class Connection(ConnectionAttr):
|
||||
list[str]: List of package names
|
||||
"""
|
||||
packages = self.list_package(show_log=show_log)
|
||||
packages = [p for p in packages if p in server_.VALID_PACKAGE]
|
||||
packages = [p for p in packages if p in server_.VALID_PACKAGE or p in server_.VALID_CLOUD_PACKAGE]
|
||||
return packages
|
||||
|
||||
def detect_package(self, set_config=True):
|
||||
|
Loading…
Reference in New Issue
Block a user