Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Icons statics: Don't use version in local webserver path #8

Merged
merged 3 commits into from
Jul 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/ayon_applications/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def get_app_icon_url(self, icon_filename, server=False):
if not server_url:
return None
return "/".join([
server_url, "addons", self.name, self.version, "icons", icon_name
server_url, "addons", self.name, "icons", icon_name
])

def get_applications_action_classes(self):
Expand Down Expand Up @@ -230,7 +230,7 @@ def webserver_initialization(self, manager):
manager (WebServerManager): Webserver manager.

"""
static_prefix = f"/addons/{self.name}/{self.version}/icons"
static_prefix = f"/addons/{self.name}/icons"
manager.add_static(
static_prefix, os.path.join(APPLICATIONS_ADDON_ROOT, "icons")
)
Expand Down