mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
cefbuilds: Encode plus signs in filenames (see issue #2596)
This commit is contained in:
@ -171,11 +171,11 @@ class cef_html_builder:
|
||||
|
||||
@staticmethod
|
||||
def _get_file_url(platform, cef_version, file):
|
||||
return file['name']
|
||||
return file['name'].replace('+', '%2B')
|
||||
|
||||
@staticmethod
|
||||
def _get_sha1_url(platform, cef_version, file):
|
||||
return file['name'] + '.sha1'
|
||||
return cef_html_builder._get_file_url(platform, cef_version, file) + '.sha1'
|
||||
|
||||
@staticmethod
|
||||
def _get_tooltip_text(platform, cef_version, file):
|
||||
|
Reference in New Issue
Block a user