mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-27 19:16:29 +00:00
Bugfix, remove unsupported characters
This commit is contained in:
parent
8ff79e85bf
commit
0684427373
@ -55,8 +55,8 @@ class AddonBuild(JsonConfig, CoreSysAttributes):
|
|||||||
'io.hass.version': version,
|
'io.hass.version': version,
|
||||||
'io.hass.arch': self._arch,
|
'io.hass.arch': self._arch,
|
||||||
'io.hass.type': META_ADDON,
|
'io.hass.type': META_ADDON,
|
||||||
'io.hass.name': self.addon.name,
|
'io.hass.name': self._fix_label('name'),
|
||||||
'io.hass.description': self.addon.description,
|
'io.hass.description': self._fix_label('description'),
|
||||||
},
|
},
|
||||||
'buildargs': {
|
'buildargs': {
|
||||||
'BUILD_FROM': self.base_image,
|
'BUILD_FROM': self.base_image,
|
||||||
@ -70,3 +70,8 @@ class AddonBuild(JsonConfig, CoreSysAttributes):
|
|||||||
args['labels']['io.hass.url'] = self.addon.url
|
args['labels']['io.hass.url'] = self.addon.url
|
||||||
|
|
||||||
return args
|
return args
|
||||||
|
|
||||||
|
def _fix_label(self, label_name):
|
||||||
|
"""Remove characters they are not supported."""
|
||||||
|
label = getattr(self.addon, label_name, "")
|
||||||
|
return label.replace("'", "")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user