Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
PadreZippo committed Mar 14, 2023
2 parents ad6abc4 + 6ce0441 commit 5a0769c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/io_sketchfab_plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2253,7 +2253,7 @@ def execute(self, context):
# Check the generated file size against the user plans, to know if the upload will succeed
upload_limit = Config.SKETCHFAB_UPLOAD_LIMITS[get_sketchfab_props().skfb_api.plan_type]
if get_sketchfab_props().skfb_api.use_org_profile:
upload_limit = Config.SKETCHFAB_UPLOAD_LIMITS["enterprise"]
upload_limit = Config.SKETCHFAB_UPLOAD_LIMITS["ent"]
if size > upload_limit:
human_size_limit = Utils.humanify_size(upload_limit)
human_exported_size = Utils.humanify_size(size)
Expand Down

0 comments on commit 5a0769c

Please sign in to comment.