Compare commits
2 Commits
97cea17f3c
...
4c5ab796d3
| Author | SHA1 | Date | |
|---|---|---|---|
|
4c5ab796d3
|
|||
|
4e7cf9104c
|
@@ -46,10 +46,10 @@ class IniFile
|
||||
$raw = $ini[$code];
|
||||
$data = [
|
||||
'code' => $code,
|
||||
'name' => $raw['name'],
|
||||
'description' => $raw['desc'],
|
||||
'name' => $raw['name'] ?? "Playlist #$code",
|
||||
'description' => $raw['desc'] ?? null,
|
||||
'url' => $raw['pls'],
|
||||
'source' => $raw['src'],
|
||||
'source' => $raw['src'] ?? null,
|
||||
'content' => null,
|
||||
'isOnline' => null,
|
||||
'attributes' => [],
|
||||
|
||||
@@ -336,7 +336,11 @@
|
||||
title="Состояние: оффлайн"
|
||||
{% endif %}
|
||||
|
||||
></ion-icon> <span class="chname">{{ channel.title }}</span>
|
||||
></ion-icon>
|
||||
{% if "adult" in channel.tags %}
|
||||
<span class="badge small bg-warning text-dark" title="Канал для взрослых!">18+</span>
|
||||
{% endif %}
|
||||
<span class="chname">{{ channel.title }}</span>
|
||||
<div class="text-secondary small">
|
||||
{% if (channel.attributes['tvg-id']) %}
|
||||
<div title="tvg-id">
|
||||
|
||||
Reference in New Issue
Block a user