mirror of
https://github.com/fastogt/fastocloud_admin.git
synced 2025-03-09 23:38:52 +00:00
Merge
This commit is contained in:
commit
5b89655b42
2 changed files with 7 additions and 1 deletions
|
@ -256,6 +256,13 @@ class HardwareStream(IStream):
|
|||
conf[AUDIO_SELECT_FIELD] = audio_select
|
||||
return conf
|
||||
|
||||
def to_channel_info(self) -> [ChannelInfo]:
|
||||
ch = []
|
||||
for out in self.output.urls:
|
||||
epg = EpgInfo(self.get_id(), out.uri, self.name, self.icon)
|
||||
ch.append(ChannelInfo(epg))
|
||||
return ch
|
||||
|
||||
def generate_feedback_dir(self):
|
||||
return '{0}/{1}/{2}'.format(self._settings.feedback_directory, self.get_type(), self.get_id())
|
||||
|
||||
|
|
|
@ -870,6 +870,5 @@ Dashboard | {{ config['PUBLIC_CONFIG'].site.title }}
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue